我希望能够在将一个对象传输到文件后从文件中读取对象。 现在,它在我第一次阅读时工作正常,但是当我再次尝试再读(到另一个对象)时,有一个我无法处理的异常。
现在,我猜测文件索引到了文件的末尾,因此我无法从中读取。
我错了吗?如果没有,我可以将文件索引设置为文件的开头吗?
try{
Classba cb=new Classba();
FileOutputStream fos=new FileOutputStream(args[0]);
ObjectOutputStream oos=new ObjectOutputStream(fos);
oos.writeObject(cb);
FileInputStream fis=new FileInputStream(args[0]);
ObjectInputStream ois=new ObjectInputStream(fis);
Classba cb2;
cb2=(Classba)ois.readObject();
cb2.print();
Classba cb3; //*OK Till Here*//
cb3=(Classba)ois.readObject();
}