/* Readwrite.Java
接收鍵盤的輸入, 並原樣輸出到屏幕上
要結束此程序是,請按<Crtl>+C鍵
*/
// 利用的庫
import Java.io.*;
// class Readwrite
public class Readwrite
{
public static void main(String[] args)
{
byte[] buff = new byte[1024]; // 定義數組
while (true) {
try {
int n = System.in.read(buff); // 從System.in讀出數據
System.out.write(buff, 0, n); // 寫入System.out中
}
catch (Exception e) { //異常處理
System.exit(1);
}
}
}
}