欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java在文件尾部追加内容的简单实例

程序员文章站 2024-03-09 12:26:41
如下所示: import java.io.filewriter; import java.io.ioexception; import java.io.ran...

如下所示:

import java.io.filewriter;
import java.io.ioexception;
import java.io.randomaccessfile;

/**
 * 将内容追加到文件尾部.
 * @author haicheng.cao
 *
 */
public class appendtofile {
  /**
   * a方法追加文件:使用randomaccessfile
   */
  public static void appendmethoda(string filename, string content) {
    try {
      // 打开一个随机访问文件流,按读写方式
      randomaccessfile randomfile = new randomaccessfile(filename, "rw");
      // 文件长度,字节数
      long filelength = randomfile.length();
      //将写文件指针移到文件尾。
      randomfile.seek(filelength);
      randomfile.writebytes(content);
      randomfile.close();
    } catch (ioexception e) {
      e.printstacktrace();
    }
  }

  /**
   * b方法追加文件:使用filewriter
   */
  public static void appendmethodb(string filename, string content) {
    try {
      //打开一个写文件器,构造函数中的第二个参数true表示以追加形式写文件
      filewriter writer = new filewriter(filename, true);
      writer.write(content);
      writer.close();
    } catch (ioexception e) {
      e.printstacktrace();
    }
  }

  public static void main(string[] args) {
    string filename = "c:/temp/newtemp.txt";
    string content = "new append!";
    //按方法a追加文件
    appendtofile.appendmethoda(filename, content);
    appendtofile.appendmethoda(filename, "append end. \n");
    //显示文件内容
    readfromfile.readfilebylines(filename);
    //按方法b追加文件
    appendtofile.appendmethodb(filename, content);
    appendtofile.appendmethodb(filename, "append end. \n");
    //显示文件内容
    readfromfile.readfilebylines(filename);
  }
}

以上这篇java在文件尾部追加内容的简单实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。