A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

//读取序列化的对象,怎么判断是否到达末尾


import java.io.*;

class SerialDemo
{
        public static void main(String[] args) throws Exception
        {
                //write();
                read();
        }
        public static void read() throws Exception
        {
                ObjectInputStream obji = new ObjectInputStream(new FileInputStream("obj.txt"));
                Person p =null;
                while((p=(Person)obji.readObject()) != null)// !!!到达末尾,再读取会发生java.io.EOFException异常
                {
                        System.out.println(p);//
                }
                obji.close();
        }
        public static void write() throws IOException
        {
                ObjectOutputStream objo = new ObjectOutputStream(new FileOutputStream("obj.txt"));
                objo.writeObject(new Person("zhang", 23));
                objo.writeObject(new Person("li", 20));
                objo.writeObject(new Person("wang", 21));
                //objo.writeObject(null);        网上有人这样建议!!!
                objo.close();
        }
}
class Person implements Serializable
{
        private String name;
        private int age;
        Person(String name,int age)
        {
                this.name = name;
                this.age = age;
        }
        public String toString()
        {
                return "name: "+name+" age: "+age;
        }
}
//while((p=(Person)obji.readObject()) != null) 不能判断是否到达末尾,网上建议在写入一个空的Object,即objo.writeObject(null),
这样的话,通过(p=(Person)obji.readObject()) != null 可以检测到达末尾,但是感觉这不是解决的办法,,各位有什么好的建议,,,谢谢!!!

评分

参与人数 1技术分 +1 收起 理由
黄玉昆 + 1

查看全部评分

1 个回复

倒序浏览
没其它办法,只有你在写入的时候用一个标记符号来结束,当读到这个标记的时候就结束
或者在读取的时候用异常处理这块代码
while(true)
{
try{
p=(Person)obji.readObject();
System.out.println(p);
}
catch(EOFException e)
{
obji.close();
break;
}
}

评分

参与人数 1技术分 +1 收起 理由
黄玉昆 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马