Here you can find the source of IsInternetReachable()
public static boolean IsInternetReachable()
//package com.java2s; import java.io.IOException; import java.net.InetAddress; import java.net.UnknownHostException; public class Main { public static boolean IsInternetReachable() { try {/*w ww. j a va 2 s.c o m*/ InetAddress.getByName("www.google.com").isReachable(3); return true; } catch (UnknownHostException e) { return false; } catch (IOException e) { return false; } } }