To ping in Java you can use the following snippet.
Sample Java
public static void pingUrl(String url, Integer timeOut)
{
url = url.replace("http://", "");
try {
InetAddress address = InetAddress.getByName(url);
System.out.println("Hostname: " + address.getHostName());
System.out.println("IP-Address: " + address.getHostAddress());
System.out.println("Reachable in " + ((double)timeOut / (double)1000) + " Seconds: " + address.isReachable(timeOut));
}
catch (UnknownHostException e) {
System.err.println("Unable to lookup " + url + "; error: " + e);
}
catch (IOException e) {
System.err.println("Unable to reach " + url);
}
}
RT @CodeSnippetsNET: How to ping in #Java http://t.co/YNYOlQnsln #programming #code #coding #dev #developer #develop #programmierung