使用这种方式,当指定的文件不存在时会自动创建。
//此处设置为true即可追加 FileWriter out = new FileWriter("D:\1.txt",true); //往文件写入 out.write("abc"); //换行 out.write(" "); //继续追加 out.write("def"); //刷新IO内存流 out.flush(); //关闭 out.close();