找不到 src/ 文件路径
src/ file path not found
我想将一个可序列化对象保存到 src/ 文件夹中。
File file = new File("src/test.ser");
file.createNewFile();
fout = new FileOutputStream(file);
oos = new ObjectOutputStream(fout);
oos.writeObject(object);
但是,The system cannot find the path specified
弹出错误消息。如果我使用绝对文件路径,则该方法有效。
如果这有任何相关性,我已将另一个项目添加到构建路径中。
在src.
之前使用./
File file = new File("./src/test.ser");
file.createNewFile();
fout = new FileOutputStream(file);
oos = new ObjectOutputStream(fout);
oos.writeObject(object);
我想将一个可序列化对象保存到 src/ 文件夹中。
File file = new File("src/test.ser");
file.createNewFile();
fout = new FileOutputStream(file);
oos = new ObjectOutputStream(fout);
oos.writeObject(object);
但是,The system cannot find the path specified
弹出错误消息。如果我使用绝对文件路径,则该方法有效。
如果这有任何相关性,我已将另一个项目添加到构建路径中。
在src.
之前使用./File file = new File("./src/test.ser");
file.createNewFile();
fout = new FileOutputStream(file);
oos = new ObjectOutputStream(fout);
oos.writeObject(object);