import java.io.*;
class 文件的续写
{
public static void main(String[] args) throws IOException
{
//传递一个true参数,代表不覆盖原有文件,在文件末尾续写
FileWriter fw = new FileWriter("demo.txt",true);
fw.write("wo\r\ncao");
fw.close();
}
}
java基础入门-----文件的续写
最新推荐文章于 2024-07-10 22:18:15 发布