本帖最后由 刘茂林 于 2013-5-17 12:02 编辑
- import java.io.*;
- public class FileWriterDemo3
- {
- public static void mian(String[] args)
- {
- // 传递一个true参数,代表不覆盖已有文件,并在已有文件的末尾进行数据续写
- FileWriter fw = null;
- try
- {
- fw = new FileWriter("demo.txt", true);
-
- fw.write("nihao\r\n xiexie");
- } catch (IOException e)
- {
- System.out.println(e.toString());
- } finally
- {
- try
- {
- if (!(fw == null))
- {
- fw.close();
- }
- } catch (IOException e)
- {
- System.out.println(e.toString());
- }
- }
- }
- }
复制代码 续写不成功 啥原因 我看过了。。。原来的文件名没问题。。我先创建了一个
|