免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 7451 | 回复: 2
打印 上一主题 下一主题

append的方式写文件,FileWriter如何实现?? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-04-07 12:02 |只看该作者 |倒序浏览
append的方式写文件,FileWriter如何实现??

论坛徽章:
0
2 [报告]
发表于 2003-04-09 01:29 |只看该作者

append的方式写文件,FileWriter如何实现??

看看JDK 文档吧
FileWriter out = new FileWriter ("file name", true)

论坛徽章:
0
3 [报告]
发表于 2003-04-09 08:52 |只看该作者

append的方式写文件,FileWriter如何实现??

以前写的一段代码,看 append() 方法:


  1. import java.io.File;
  2. import java.io.FileWriter;
  3. import java.io.PrintWriter;
  4. import java.io.IOException;

  5. /**
  6. * <p>;
  7. * A simple log writer, append a line to a text file
  8. *
  9. * Note: the log file should be created manually now.
  10. * </p>;
  11. *
  12. * @author cinc
  13. */
  14. public class LogWriter{
  15.     /**
  16.      * filename of the log file
  17.      */
  18.     protected String filename;
  19.     /**
  20.      * the log file
  21.      */
  22.     protected File file;
  23.     /**
  24.      * the file writer
  25.      */
  26.     protected FileWriter fWriter;
  27.     /**
  28.      * the print writer (we can invoke function : println(String))
  29.      */
  30.     protected PrintWriter pWriter;

  31.     /**
  32.      * Constructor
  33.      *
  34.      * @param        filename        the filename of the log
  35.      *
  36.      */
  37.     public LogWriter(String filename) throws IOException{
  38.         this.filename = filename;
  39.         file = new File(filename);
  40.     }

  41.     /**
  42.      * append a new line to the log file, also output it to console
  43.      *
  44.      * @param      log          the string to write to file
  45.      *
  46.      */
  47.     public synchronized void append(String log){
  48.         fWriter = null;
  49.         pWriter = null;
  50.         try{
  51.             fWriter = new FileWriter(file, true);
  52.             pWriter = new PrintWriter(fWriter);
  53.             // append to log file
  54.             pWriter.println(log);
  55.             // output it to console
  56.             System.out.println(log);
  57.         }catch (IOException e){
  58.             System.out.println ("Error Writing log file: " + e);
  59.         }finally{
  60.             try{
  61.                 if (pWriter != null){
  62.                     pWriter.close();
  63.                 }
  64.                 if (fWriter != null){
  65.                     fWriter.close();
  66.                 }
  67.             }catch (IOException e){}
  68.         }
  69.     }

  70.     /**
  71.      * Return the length of the log file
  72.      *
  73.      * @return       the length of the log file
  74.      *
  75.      */
  76.     public long getLength(){
  77.         return file.length();
  78.     }

  79.     /**
  80.      * append a new line to the log file, also output it to console
  81.      *
  82.      * @param      obj          the object to write to file
  83.      *
  84.      */
  85.     public void append(Object obj) throws IOException{
  86.         append(obj.toString());
  87.     }

  88. }

复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP