2010-02-11から1日間の記事一覧

40. 書き込み

40. 書き込み 文字ストリーム L:\lesson101\test.java import java.io.*; class test { public static void main(String args[]) { try { FileWriter fp = new FileWriter(args[0]); fp.write(args[1]); fp.close(); } catch (IOException e) { System.out.p…