import java.io.*;public class Write { public static void main (String [] args ) throws IOException { PrintStream fout = new PrintStream(new FileOutputStream("javaout")); fout.println("bla"); fout.println("xxx"); fout.flush(); fout.close(); } // end of main} // end of class