续写和换行
1 package com.yhqtv.demo05.Writer; 2 3 import java.io.FileWriter; 4 import java.io.IOException; 5 6 /* 7 * @author XMKJ yhqtv.com Email:yhqtv@qq.com 8 * @create 2020-05-13-9:30 9 * 10 */ 11 /* 12 续写和换行 13 续写,追加写:使用两个参数的构造方法 14 FileWriter(String fileName, boolean append) 15 FileWriter(File file, boolean append) 16 参数: 17 String fileName,File file:写入数据的目的地 18 boolean append:续写开关 true:不会创建新的文件覆盖源文件,可以续写; false:创建新的文件覆盖源文件 19 换行:换行符号 20 windows:\r\n 21 linux:/n 22 mac:/r 23 */ 24 public class Demo04Writer { 25 public static void main(String[] args) throws IOException { 26 27 FileWriter fw=new FileWriter("C:\\666\\6hello.txt",true); 28 for (int i = 0; i < 10; i++) { 29 fw.write("鑫淼"+"\r\n"); 30 31 } 32 fw.close(); 33 } 34 }