2012年12月16日 星期日

檔案的寫入

寫一個程式,可以儲存人名和成績

import java.util.Scanner;
import java.io.FileWriter;
import java.io.IOException;

class Write{
    public static void main(String[] args)throws IOException{
   
        FileWriter f = new FileWriter("d:\\MyWriter.txt", true);
//透過FileWriter來指定位置跟存入一個檔案
   
        Scanner s = new Scanner(System.in);

        System.out.println("請輸入性名");
        String name = s.nextLine();
        System.out.println("請輸入分數");
        int sc = s.nextInt();
       
        f.write(name+":"+sc+"\n");
        f.close();
    }
}

執行後生成一個檔案
檔案內容:
jack:10
mary:20
tom:30
mark:40


沒有留言:

張貼留言