import java.io.*; public class WriteTest { public static void main (String [] args) throws IOException { FileWriter fw = new FileWriter ("hallo.txt"); fw.write ("Hallo Welt"); fw.close (); } }