public class demo {
public static void main(String[] args) {
System.out.println("使用IP地址创建InetAddress");
InetAddress localHost = null;
try {
localHost = InetAddress.getByName("192.168.100.22");
} catch (Exception e) {
System.out.println("创建InetAddress失败");
}
boolean b = false;
try {
if(localHost.isReachable(100)){
System.out.println("可以ping通");
}
} catch (IOException e) {
System.out.println("判断是否可达失败");
}
}
}
07-20
1242
11-16
729