用java中的io流写入文件如何避免覆盖原来的内容?求代码

如题所述

第1个回答  2020-06-11
用这个方法public
FileOutputStream(String
name,boolean
append)throws
FileNotFoundException,将逻辑值append设为false时,写入的字节数据覆盖文本原来的内容,为ture是即追加到原来文本的末尾。覆盖原文本内容如:FileOutputStream
x=new
FileOutputStream("文件全路径",false);throws
FileNotFoundException为抛出异常。
第2个回答  2012-08-11
new FileOutputStream(文件, true); // true代表追加本回答被网友采纳
第3个回答  2012-08-13
可以用一个定位的流,叫什么名字我忘记了,seek到你需要写的地方
相似回答