1. 程式人生 > >Java實驗5 IO流第一題

Java實驗5 IO流第一題

編寫程式,要求:使用者在鍵盤每輸入一行文字,程式將這段文字顯示在控制檯中。當用戶輸入的一行文字是“exit”(不區分大小寫)時,程式將使用者所有輸入的文字都寫入到檔案log.txt中,並退出。(要求:控制檯輸入通過流封裝System.in獲取,不要使用Scanner) 

import java.io.*;
public class Main {

	public static void main(String[] args) {
		BufferedReader in = null;
		BufferedWriter out = null;
		try {
			in = new BufferedReader(new InputStreamReader(System.in));
			out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream("log.txt")));
			String s;
			while ((s = in.readLine()) != null) {
				if (s.equals("exit") || s.equals("EXIT")) {
					break;
				}
                                System.out.println(s);
				out.write(s);
				out.newLine();
			}
			out.flush();
			out.close();
		} catch (IOException e) {
			e.printStackTrace();
		} finally {
			try {
				in.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
	}
}