Programming Tutorials

Comment on Tutorial - FileReader and FileWriter example program in Java By Tamil Selvan



Comment Added by : Joseph Harner

Comment Added at : 2011-12-04 23:20:48

Comment on Tutorial : FileReader and FileWriter example program in Java By Tamil Selvan
Simpler example:

import java.io.*;
class WriteToText {
public static void main(String args[]) throws Exception {
String source = "Now is the time for all good men to come to the aid of their country and pay their due taxes.";
FileWriter f0 = new FileWriter("file1.txt");
f0.write(source);
f0.close();
}
}


View Tutorial