第1个回答 2020-06-11
用这个方法public
FileOutputStream(String
name,boolean
append)throws
FileNotFoundException,将逻辑值append设为false时,写入的字节数据覆盖文本原来的内容,为ture是即追加到原来文本的末尾。覆盖原文本内容如:FileOutputStream
x=new
FileOutputStream("文件全路径",false);throws
FileNotFoundException为抛出异常。