Here you can find the source of isAddressReachable(InetAddress address)
private static boolean isAddressReachable(InetAddress address)
//package com.java2s; //License from project: Apache License import java.io.IOException; import java.net.InetAddress; public class Main { private static boolean isAddressReachable(InetAddress address) { try {/* w w w .ja v a 2 s . co m*/ return address.isReachable(200); } catch (IOException e) { return false; } } }