在不删除当前数据的情况下写入文件
可能的重复项: java append to file How to append data to a file?
我想在不清除(删除)旧数据的情况下用java写入文件
这是我的尝试,但是写入新数据时将清除当前数据。
import java.io.*;
public class WriteToFileExample {
public static void main(String[] args) {
try {
String content = "New content to write to file";
File file = new File("/mypath/filename.txt");
// if file doesnt exists, then create it
if (!file.exists())
file.createNewFile();
FileWriter fw = new FileWriter(file.getAbsoluteFile());
BufferedWriter bw = new BufferedWriter(fw);
bw.write(content);
bw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
解决方案
使用可以指示文件在追加模式下打开的构造函数FileWriter(String filename, boolean append)
:
FileWriter fw = new FileWriter(file.getAbsoluteFile(), true);
//^^^^ means append
相关文章