具有追加模式的 Java 文件编写器
2022-09-01 00:44:20
我目前正在使用创建和写入文件。有没有办法每次都写入同一文件而不删除其中的内容?FileWriter
fout = new FileWriter(
"Distribution_" + Double.toString(_lowerBound) + "_" + Double.toString(_highBound) + ".txt");
fileout = new PrintWriter(fout,true);
fileout.print(now.getTime().toString() + ", " + weight + ","+ count +"\n");
fileout.close();