java 文件操作追加內容

文件操作追加內容

 

 

追加內容:

package com.cyyaw.s;

import java.io.FileWriter;

import java.io.IOException;

import java.io.RandomAccessFile;

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 = "d:\\a.txt";

           String content = "new append! \n\r";

           

           

           

           // 按方法A追加文件

           //AppendToFile.appendMethodA(fileName, content);

           //AppendToFile.appendMethodA(fileName, "append end.");

     }

}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章