1. package com.anjoyo.test; 
  2. import java.io.FileWriter; 
  3. import java.io.IOException; 
  4. public class TestFileWriter { 
  5.     public static void main(String[] args) throws IOException{ //举例需要,这里用throws
  6.         //\r\n为换行符 
  7.         FileWriter fw = new FileWriter("D:\\1.txt"); 
  8.         fw.write("第一行\r\n"); 
  9.         //或者获得系统换行符 
  10.         String str = "第二行" + System.getProperty("line.separator"); 
  11.         fw.write(str); 
  12.         fw.write("第三行"); 
  13.         fw.close(); 
  14.         /* 
  15.          * windows下的文本文件换行符:\r\n linux/unix下的文本文件换行符:\r 
  16.          * Mac下的文本文件换行符:\n 
  17.          */ 
  18.     }