文字列入力する方法は分かりにくいので、(どこに入力するか迷う)
Ctrl + zとした。というかreadLine()がnullの場合。
macだとCtrl + dとか。
- public static void main(String[] args) throws IOException {
- // the main routine is only here so I can also run the app from the
- // command line
- BufferedReader stdReader = new BufferedReader(new InputStreamReader(
- System.in));
- System.out.print("Enter 'Ctrl + z' to halt: ");
- while (stdReader.readLine() != null) { // ユーザの入力を待つ
- ;
- }
- }
0 件のコメント:
コメントを投稿