import java.io.*; class TestFileWriter{ public static void main(String[] args) throws IOException{ FileWriter fw = new FileWriter("data.txt"); fw.write(52); fw.write(53); fw.write('h'); fw.flush(); fw.close(); } }