2012年6月27日水曜日

アプリケーションの止め方 その2

その1は以前commons-daemon書いたときの方法だけど
文字列入力する方法は分かりにくいので、(どこに入力するか迷う)
Ctrl + zとした。というかreadLine()がnullの場合。


macだとCtrl + dとか。

  1. public static void main(String[] args) throws IOException {  
  2.         // the main routine is only here so I can also run the app from the  
  3.         // command line  
  4.   
  5.         BufferedReader stdReader = new BufferedReader(new InputStreamReader(  
  6.                 System.in));  
  7.         System.out.print("Enter 'Ctrl + z' to halt: ");  
  8.         while (stdReader.readLine() != null) { // ユーザの入力を待つ  
  9.             ;  
  10.         }  
  11.     }  

0 件のコメント:

コメントを投稿