Three methods of appending file content in Java

package com.bijian.test;

import java.io.BufferedWriter;
import java.io.File;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.RandomAccessFile;

public class AppendFile {
	
	public static void method1(String file, String conent) {   
        BufferedWriter out = null;   
        try {   
            out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file, true)));   
            out.write(conent);   
        } catch (Exception e) {   
            e.printStackTrace ();   
        } finally {   
            try {   
            	if(out != null){
            		out.close();   
                }
            } catch (IOException e) {   
                e.printStackTrace ();   
            }   
        }   
    }   
  
    /**  
     * Append file: use FileWriter  
     *   
     * @param fileName  
     * @param content  
     */  
    public static void method2(String fileName, String content) {
    	FileWriter writer = null;
        try {   
            // Open a file writer, the second parameter true in the constructor means to write the file in append form   
            writer = new FileWriter(fileName, true);   
            writer.write(content);     
        } catch (IOException e) {   
            e.printStackTrace ();   
        } finally {   
            try {   
            	if(writer != null){
            		writer.close();   
            	}
            } catch (IOException e) {   
                e.printStackTrace ();   
            }   
        }
    }   
  
    /**  
     * Append file: use RandomAccessFile  
     *   
     * @param fileName filename  
     * @param content Append content  
     */  
    public static void method3(String fileName, String content) {
    	RandomAccessFile randomFile = null;
        try {   
            // Open a random access file stream, read and write   
            randomFile = new RandomAccessFile(fileName, "rw");   
            // file length, bytes   
            long fileLength = randomFile.length();   
            // Move the write file pointer to the end of the file.   
            randomFile.seek(fileLength);   
            randomFile.writeBytes(content);    
        } catch (IOException e) {   
            e.printStackTrace ();   
        } finally{
        	if(randomFile != null){
        		try {
					randomFile.close();
				} catch (IOException e) {
					e.printStackTrace ();
				}
        	}
        }
    }  

	public static void main(String[] args) {
		try{
			File file = new File("d://text.txt");
			if(file.createNewFile()){
				System.out.println("Create file successed");
			}
			method1("d://text.txt", "111");
			method2("d://text.txt", "222");
			method3("d://text.txt", "333");
		}catch(Exception e){
			System.out.println(e);
		}
	}
}

  After the operation is completed, open the test.txt file under the D drive, and the content is as follows:


 

Article source: http://blog.csdn.net/malik76/article/details/6408726/

 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326359458&siteId=291194637