アットウィキロゴ

ヴn

import java.io.*;

class pro{
  public static void main(String[] args)
  {
     try{
        PrintWriter pw = [[new]] PrintWriter
        (new BufferedWriter(new FileWriter("test1.[[txt]]")));
        
        pw.println("Hello!");
        pw.println("GoodBye!");
        System.out.println("[[ファイル]]に書きこみました。");

        pw.close();
     }
     catch(IOException e){
        System.out.println("入出力エラーです。");
     }
  }
}
最終更新:2010年09月28日 05:25