随笔 - 11  文章 - 33  trackbacks - 0
<2007年8月>
2930311234
567891011
12131415161718
19202122232425
2627282930311
2345678

常用链接

留言簿(1)

随笔分类

随笔档案

文章档案

搜索

  •  

最新随笔

最新评论

阅读排行榜

评论排行榜

这是一个简单的往文件里写内容的方法:

  public void writeFile(String fileName, String content) throws Exception {
    File f = new File(fileName);
    if (f.exists()) {
      f.delete();
    }
    f.createNewFile();
    FileWriter fileWriter = new FileWriter(f);
    PrintWriter writer = new PrintWriter(fileWriter);
    writer.write(content);
    writer.flush();
    writer.close();
  }

posted on 2007-08-24 10:43 teasp 阅读(949) 评论(0)  编辑  收藏 所属分类: Java学习

只有注册用户登录后才能发表评论。


网站导航: