我对这种方法有疑问:
public void runTransaction(){
//Some calculations...
wait();
//Other calculations...
}
private static void wait(){
try {
System.out.println("Press <enter> to continue");
System.in.read();
}
catch (java.io.IOException ex) {
System.out.println("Input error...");
}
}
但按 Enter 后程序不会继续。我正在使用 Ubuntu 12.04。
编辑:程序确实会打印消息“按继续”,但之后不会继续,它只是等待输入。