我正在尝试序列化以下类:
public class Library extends ArrayList<Book> implements Serializable{
public Library(){
check();
}
使用该类的以下方法:
void save() throws IOException {
String path = System.getProperty("user.home");
File f = new File(path + "\\Documents\\CardCat\\library.ser");
ObjectOutputStream oos = new ObjectOutputStream (new FileOutputStream (f));
oos.writeObject(this);
oos.close();
}
但是,该程序不是创建一个名为library.ser
的文件,而是创建一个名为library.ser
的目录,其中没有任何内容。为什么是这样?
如果它有用,则最初从此方法(同一类)调用save()方法:
void checkFile() {
String path = System.getProperty("user.home");
File f = new File(path + "\\Documents\\CardCat\\library.ser");
try {
if (f.exists()){
load(f);
}
else if (!f.exists()){
f.mkdirs();
save();
}
} catch (IOException | ClassNotFoundException ex) {
Logger.getLogger(Library.class.getName()).log(Level.SEVERE, null, ex);
}
}
答案 0 :(得分:33)
File.mkdirs()创建目录而不是文件
这就是应该做的。阅读Javadoc。没有关于创建文件的内容。
f.mkdirs();
这条线创建了目录。它应该是
f.getParentFile().mkdirs();
答案 1 :(得分:2)
我很确定调用f.mkdirs()
是你的问题。如果该文件尚不存在(这似乎是您的情况),f.mkdirs()
调用将为您提供一个名为“library.ser”而不是File的目录,这就是您的“save()”调用的原因不起作用 - 您无法将对象序列化到目录。