tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Tools and Libs > Commons IO > Basic > Append File

Append File 

Apache Commons IO is a java library with simple IO utilities and filters. This requires the library commons-io-2.1.jar to be in classpath. The following example shows using FileUtils.write() API.

File Name  :  
com/bethecoder/tutorials/commons_io/tests/AppendFile.java 
Author  :  Sudhakar KV
Email  :  [email protected]
   
package com.bethecoder.tutorials.commons_io.tests;

import java.io.File;
import java.io.IOException;

import org.apache.commons.io.FileUtils;

public class AppendFile {

  /**
   @param args
   @throws IOException 
   */
  public static void main(String[] argsthrows IOException {
    File file = new File("C:/Test/abcd.txt");
    String data = "\nBE THE CODER \nExamples";
    
    boolean append = true;
    FileUtils.write(file, data, "UTF-8", append);
  }
}
   

It gives the following output,
File Name  :  C:/Test/abcd.txt



 
  


  
bl  br