Saturday, 10 January 2015

Managing files with Apache Commons FileUtils


Managing files with Apache Commons FileUtils, First we need to download commons-io-2.4.jar file from the above site. Add the jar file to eclipse java build path.

I have written the simple file reading/writing  program

package files;

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

import org.apache.commons.io.FileUtils;

public class Main {

public static void main(String[] args) {
try {
File f1 = new File("loremipsum.txt");
File f2 = new File("target.txt");

FileUtils.copyFile(f1, f2);

System.out.println("File copied!");
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}

}
}

No comments:

Post a Comment