我正在尝试创建一个保存功能,将存储的数据输出到文本文件。我已经尝试使用Printwriter写入文件,虽然我没有收到任何错误,输出似乎是正确的,但文本文件仍然是空白的。这是我的代码:
public void saveConfiguration() throws IOException{
PrintWriter pw = new PrintWriter("locos.txt");
for (int i = 0; i < currentTrains.size(); i++) {
//confirm data is correct
System.out.println(currentTrains.get(i).getAddress() + " " +
currentTrains.get(i).getName() + " " + "\n");
//write to file
pw.write(currentTrains.get(i).getAddress() + " " +
currentTrains.get(i).getName() + " " + "\n");
}
pw.close();
//for testing
System.out.println("File Saved");
}
这是控制台上的内容:
8 class 08
55 Jinty
44 BR44
File Saved
上面打印出的数据是正确的,但是没有写入文件。任何人都可以解释如何正确地做到这一点吗?
编辑:我不知道这是否相关,但我在Tomcat服务器上运行它。
答案 0 :(得分:0)
您应该尝试处理 PrintWriter 和 Filerwriter 而不是......
PrintWriter pw = new PrintWriter(new FileWriter("locos.txt"));