public static void main(String[] args) throws IOException{
String msg;
BufferedReader userIn = new BufferedReader(new InputStreamReader(System.in));
System.out.println("please type something now:");
msg = userIn.readLine();
System.out.println(msg);
userIn.close();
}
在 Eclipse 中完美运行,但是当我通过 konsole 运行时,没有打印出来。
提前致谢