gpt4 book ai didi

编写时不存储Java对象

转载 作者:行者123 更新时间:2023-11-30 11:26:19 25 4
gpt4 key购买 nike

我目前正在开发一个 android 项目,当我写出它们时,我的对象没有被存储。

这是我的写法,其中 cont 是一个 Contact 类型的 ArrayList

if (contacts.size() > 0){
File fout = new File(c.getCacheDir(), "contacts.acl");
if (fout.exists()){
try{
ObjectOutputStream out = new ObjectOutputStream(new BufferedOutputStream(new FileOutputStream(fout, false)));
for (Contact cont : contacts){
Log.d(MYACT, "Writing out: " + cont.getfName());
out.writeObject(cont);
}
out.flush();
out.close();
}catch (Exception e){e.printStackTrace();}
}
}

我是这样读的

private ArrayList<Contact> readContacts(){
ArrayList<Contact> contactList = new ArrayList<Contact>();
File file = new File(c.getCacheDir(), "contacts.acl"); //get contact file
Log.d(MYACT, "Launch File exists: " + file.exists());
if (file.exists()){ // if it exists then read in contacts while there are contacts left
try{

ObjectInputStream in = new ObjectInputStream(new BufferedInputStream(new FileInputStream(file)));
Log.d(MYACT, "Reading from file. Available: " + in.available());
while (in.available() > 0){
Contact cont = (Contact)in.readObject();
Log.d(MYACT, "Read in: " + cont.getfName());
contactList.add(cont);
}
in.close();
}catch (Exception e){
e.printStackTrace();
}
}
else // else creates the file
try{
file.createNewFile();
}catch (IOException e){}

return contactList;
}

起初我以为是因为我错过了关闭一个流,但它们都关闭了。可能是什么问题呢?是否有任何其他解决方案来存储对象。最初我有它,以便它将每个联系人存储在同一个文件中,但后来我将它转移到存储联系人的 ArrayList。

感谢您的帮助。

最佳答案

您已写入 ObjectOutputStream。所以不需要 checkin .available()替换 while 循环

while (in.available() > 0){
Contact cont = (Contact)in.readObject();
Log.d(MYACT, "Read in: " + cont.getfName());
contactList.add(cont);
}
in.close();
}catch (Exception e){
e.printStackTrace();
}

while (true){
Contact cont = (Contact)in.readObject();
contactList.add(cont);
}
}
catch(EOFException eof){}
catch (Exception e){
e.printStackTrace();
}

关于编写时不存储Java对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19852592/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com