您好我在尝试将新对象附加到现有文件时遇到问题。 一旦Android应用程序再次被启动,我想获取现有文件并添加新对象然后从现有文件中读取对象...实际上,当我尝试读取对象时,代码将只读取第一个对象..你可以在下面找到代码..你能帮忙吗?谢谢
使用以下方法编写对象:
public void saveObject(Person p, File f){
try
{
ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(f, true));
oos.writeObject(p);
oos.reset();
oos.flush();
oos.close();
}
catch(Exception ex)
{
Log.v("Serialization Save Error : ",ex.getMessage());
ex.printStackTrace();
}
}
使用以下方法读取对象:
public Object loadSerializedObject(File f)
{
try {
ObjectInputStream ois = new ObjectInputStream(new FileInputStream(f));
try{
Object loadedObj = null;
while ((loadedObj = ois.readObject()) != null) {
Log.w(this.getClass().getName(), "ReadingObjects") ;
}
return objects;
}finally{
ois.close();
}
} catch (StreamCorruptedException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
return null;
}
答案 0 :(得分:0)
不幸的是,每次要添加到流中时都无法创建新的ObjectOutputStream
,然后使用单个流读取所有内容。在开始编写对象之前,constructor会将标头添加到基础流中。您可能会看到java.io.StreamCorruptedException: invalid type code: AC
异常,因为第一个标头是0xAC
。
我不知道你要处理多少个对象,但是一个选项可能是读取所有对象,然后使用单个ObjectOutputStream
重写它们。如果有很多对象,这可能会变得昂贵。或者,您可能需要考虑通过Externalizable手动管理序列化。但它会变得很痛苦。