2015-03-04 11:20

[Java] 執行 shell command

  1. Process p = Runtime.getRuntime().exec("ping -n 3 google.com"); 
  2. p.waitFor(); 
  3.  
  4. Scanner sc = new Scanner(p.getInputStream(), "MS950"); 
  5. String output = sc.useDelimiter("\\Z").next(); 
  6. sc.close(); 
  7.  
  8. System.out.println("exitValue: " + p.exitValue()); 
  9. System.out.println(output); 

Output:
  1. exitValue: 0 
  2.  
  3. Ping google.com [173.194.72.138] (使用 32 位元組的資料): 
  4. 回覆自 173.194.72.138: 位元組=32 時間=21ms TTL=48 
  5. 回覆自 173.194.72.138: 位元組=32 時間=20ms TTL=48 
  6. 回覆自 173.194.72.138: 位元組=32 時間=18ms TTL=48 
  7.  
  8. 173.194.72.138 的 Ping 統計資料: 
  9.    封包: 已傳送 = 3,已收到 = 3, 已遺失 = 0 (0% 遺失), 
  10. 大約的來回時間 (毫秒): 
  11.    最小值 = 18ms,最大值 = 21ms,平均 = 19ms 

0 回應: