我有這種方法的一個問題:「System.in.read()」 中的Java
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...");
}
}
但按下回車鍵後,PROGRAMM不會繼續。我使用的是Ubuntu 12.04。
編輯:該程序確實打印消息「按繼續」,但不會繼續之後,它只是等待輸入。
這個方法叫做什麼?給我們多一點代碼 – Mirco
我編輯了我的帖子。方法'runTransaction'在'main'方法中被多次調用。 – user3019653