我正在尝试序列化以下类:
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);
}
}