
// import java.awt.*;
import java.io.*;       //   NEW, for files

public class FileExample
    {
       public static void main(String args[])
         {
		  try
		    {
		  	  PrintWriter outfile;
			  outfile = new PrintWriter(new FileOutputStream("letter.txt"));
			  outfile.println("Dear Mon Ami, ");
			  outfile.println("    Yo Adrian!");
			  outfile.println("    Love, Jane");
			  outfile.close();
		     }
 		   catch (Throwable anError)
 		     {
		    	 System.out.println("outfile error>  " + anError); // display the error
		    }
	      }

    }