Return to Snippet

Revision: 35172
at November 3, 2010 19:52 by studioevoque


Initial Code
String filePath = "C:\temp.txt";
PrintWriter fout = new PrintWriter( new File(filePath), "UTF-8");

fout.println("This will print a line");

fout.close();

Initial URL


Initial Description


Initial Title
Simple UTF-8 file writing

Initial Tags
java

Initial Language
Java