| import java.io.*; class b22 { public static void main(String args[]) { try { String filename = "test.dat" ; String aaa = "aaaaa1" , bbb = "bbbbb1" , ccc = "ccccc1" ; PrintWriter writer ; writer = new PrintWriter(new FileWriter(filename, true)); writer.println(aaa); writer.println(bbb); writer.println(ccc); writer.close(); System.out.println("***** Write Finished *****"); } catch (IOException e) { System.out.println("例外 - " + e); } } } # cat test.dat aaaaa1 bbbbb1 ccccc1 |