2010年4月2日 星期五

JAVA筆記-System.getProperty() 擷取系統參數

執行Java程式時,可輸入自定義的參數

例如:
> java -Dshow=HelloWorld -Dtimes=2 Example

try{
  if (System.getProperty( "times" )!=null){
    //取得字串
    String str = System.getProperty( "show" );
  }
  if (System.getProperty( "times" )!=null){
    //取得數字
    int times = Integer.parseInt(System.getProperty("times"));
  }
} catch (Exception e){}

0 意見 :

張貼留言