Program to demonstrate how to write to a file line by line using Apache Commons-io API in Java.  
Output of the program :
package com.hubberspot.apache.commons.examples;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import org.apache.commons.io.FileUtils;
public class WriteContentsToFile {
    public static void main(String[] args) {
        Collection< String > welcome = new ArrayList< String >();
        welcome.add("Welcome to Hubberspot.com");
        welcome.add("Its a site for Java developers.");
        welcome.add("Learn Java by Examples.");
        welcome.add("Everything you want to know about Java.");
        welcome.add("Tutorials, Source Codes, SCJP, SCWCD, Frameworks,");
        welcome.add("Java EE and Design Patterns.");
        
        File file = new File("D:/hubberspot/welcome.txt");
        
        try {
            
            FileUtils.writeLines(file, welcome);
        
        } catch (IOException e) {
           
            e.printStackTrace();
        }
    }
}
Output of the program :
 

 






















