我有一個任務是在Java中創建一個簡單的控制檯pinger。 我試過下面的代碼,我有兩個主要問題。如何在Java中ping和保持統計信息
首先,即使我連接到互聯網(我可以從控制檯任何網站ping),當我運行代碼返回false。
其次,是否有可能跟蹤ping的響應時間?
下面是代碼:
try {
InetAddress address = InetAddress.getByName(the_link);
System.out.println(the_link);
// Try to reach the specified address within the timeout
// periode. If during this periode the address cannot be
// reach then the method returns false.
boolean reachable = address.isReachable(5000);
System.out.println("Is host reachable? " + reachable);
} catch (Exception e) {
e.printStackTrace();
}
地獄呢?哎呀。 – Raptor
剛剛編輯...你好...! :) – Vagelism
見過:http://stackoverflow.com/questions/2448666/how-to-do-a-true-java-ping-from-windows? – fatfredyy