// CS7 // simple java program to demonstrate the creation of a text // file. import java.io.*; class HelloFile { public static void main(String [] args) throws java.io.IOException { PrintWriter out = new PrintWriter(new FileWriter("hello.txt")); out.println("What is up?"); out.close(); } }