import java.io.*; class TestPrintWriter{ public static void main(String[] args) throws IOException{ FileWriter fw = new FileWriter("data.txt"); PrintWriter out = new PrintWriter(fw); out.println("My first data!"); out.flush(); } }