当前位置: 技术问答>java相关
请问java怎样在文件末尾追加内容?
来源: 互联网 发布时间:2015-03-26
本文导语: 我利用FileOutputStream可以实现文件的写入. 但是现在想要在已有文件末尾追加内容. 我的代码: private static boolean writeFile(String filename, byte[] bytes) { boolean status = false; try { ...
我利用FileOutputStream可以实现文件的写入.
但是现在想要在已有文件末尾追加内容.
我的代码:
private static boolean writeFile(String filename, byte[] bytes) {
boolean status = false;
try {
FileOutputStream out = new FileOutputStream(filename);
out.write(bytes, 0, bytes.length);
out.close();
status = true;
} catch (IOException e) {
System.out.println(e);
}
return status;
}
但是现在想要在已有文件末尾追加内容.
我的代码:
private static boolean writeFile(String filename, byte[] bytes) {
boolean status = false;
try {
FileOutputStream out = new FileOutputStream(filename);
out.write(bytes, 0, bytes.length);
out.close();
status = true;
} catch (IOException e) {
System.out.println(e);
}
return status;
}
|
FileOutputStream(String name,boolean append)
用这个构造器
用这个构造器