WEB开发网
开发学院WEB开发Jsp java向文本文件中写入内容或追加新内容 阅读

java向文本文件中写入内容或追加新内容

 2009-04-23 20:54:35 来源:WEB开发网   
核心提示: /** * 向文本文件中写入内容或追加新内容,如果append为true则直接追加新内容,<br> * 如果append为false则覆盖原来的内容<br> * * @param path * @param content * @param append */ public void wr

 /**
   * 向文本文件中写入内容或追加新内容,如果append为true则直接追加新内容,<br>
   * 如果append为false则覆盖原来的内容<br>
   *
   * @param path
   * @param content
   * @param append
   */
   public void writeFile(String path, String content, boolean append) {
     File writefile;
     try {
       // 通过这个对象来判断是否向文本文件中追加内容
       // boolean addStr = append;

     writefile = new File(path);

     // 如果文本文件不存在则创建它
       if (writefile.exists() == false) {
         writefile.createNewFile();
         writefile = new File(path); // 重新实例化
       }

     FileOutputStream fw = new FileOutputStream(writefile);
       System.out.PRintln("###content:" + content);
       fw.write(content.getBytes());
       fw.flush();
       fw.close();
     } catch (Exception ex) {
       System.out.println(ex.getMessage());
     }


   }

Tags:java 文本 文件

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接