从.dat文件中检索数据

时间:2010-05-21 05:18:45

标签: java

我们有一个应用程序,它要求我们使用反序列化动态地从文件(.dat)中读取数据。我们实际上是获取第一个对象,当我们使用“for”循环访问其他对象时,它会抛出空指针异常。

            File file=null;
             FileOutputStream fos=null;
             BufferedOutputStream bos=null;
             ObjectOutputStream oos=null;
             try{
                 file=new File("account4.dat");
                 fos=new FileOutputStream(file,true);
                 bos=new BufferedOutputStream(fos);
                 oos=new ObjectOutputStream(bos);
                 oos.writeObject(m);
                 System.out.println("object serialized");
                 amlist=new MemberAccountList();
                 oos.close();
             }
           catch(Exception ex){
             ex.printStackTrace();
           }

阅读对象

    try{
        MemberAccount m1;
        file=new File("account4.dat");//add your code here
        fis=new FileInputStream(file);
        bis=new BufferedInputStream(fis);
        ois=new ObjectInputStream(bis);
        System.out.println(ois.readObject());
        **while(ois.readObject()!=null){
         m1=(MemberAccount)ois.readObject();
           System.out.println(m1.toString());
       }/*mList.addElement(m1);** // Here we have the issue throwing null pointer exception
        Enumeration elist=mList.elements();
        while(elist.hasMoreElements()){
            obj=elist.nextElement();
            System.out.println(obj.toString());
        }*/

    }
    catch(ClassNotFoundException e){

    }
    catch(EOFException e){
        System.out.println("end");
    }
    catch(Exception ex){
        ex.printStackTrace();
    }

1 个答案:

答案 0 :(得分:1)

问题是你的while循环:

while(ois.readObject()!=null){
    m1=(MemberAccount)ois.readObject();
    System.out.println(m1.toString());
}

您正在从流中读取对象,检查它是否为空,然后再从流中读取。现在流可以为空,返回null。

你可以这样做:

while( ois.available() > 0 ){
    m1=(MemberAccount)ois.readObject();
    System.out.println(m1.toString());
}