http://bbs.youkuaiyun.com/topics/310057080
String host = <Your IP>
int timeOut = 3000;
boolean status = InetAddress.getByName(host).isReachable(timeOut);
InetAddress.isReachable()方法实现了ICMP,也就是Ping.(需要有一定的系统权限)
http://bbs.youkuaiyun.com/topics/310057080
String host = <Your IP>
int timeOut = 3000;
boolean status = InetAddress.getByName(host).isReachable(timeOut);
InetAddress.isReachable()方法实现了ICMP,也就是Ping.(需要有一定的系统权限)