InputStreamReader stdin = new InputStreamReader(System.in);// 读取字符就用字符流,读取数据就用字节流
System.out.println("Please input a string: ");
char[] c = new char[10];
try {
int x = stdin.read(c, 0, 10);
System.out.println(new String(c, 0, x));
} catch (IOException ie) {
}
//如果是一直输入的话就用buffferedreader 和 while一起配合使用 |