Beitrag 407 von 610 (67%) | Antworten Beitrag schreiben | Anfang zurück weiter Ende |
|
Hier mal ein beispiel, mit der windows ping methode, es gibt aber auch leute die sowas mal für java realisiert haben, sieh mla hier(habs allerdings nicht getestet):
http://www.geocities.com/SiliconValley/Bit/5716/ping/index_eng.html
Da gibt es dann eine PingICMP Klasse, die auf eine mitgelieferte DLL zurückgreift.
Windows ping BSP:
import java.io.*;
class ping{
static String line = "";
static void pingIt(String ipAddress) throws Exception{
Runtime r = Runtime.getRuntime();
Process p = r.exec("ping " + ipAddress);
BufferedReader in = new BufferedReader(new InputStreamReader(p.getInputStream()));
// Prüfen ob ein Timout oder ein Reply zurückgekommen ist
while ((line = in.readLine()) != null) {
if(line.startsWith("Antwort von")){
System.out.println("host is alive");
break;
}
if (line.startsWith("Zeit")){
System.out.println("request timed out.");
break;
}
}
}
public static void main(String[] args) throws Exception {
pingIt(args[0]);
pingIt(args[1]);
}
}