我的代码如下:
public chkRechable(String hostNameOrIp) {
boolean isRechable = InetAddress.getByName(hostNameOrIp).isReachable(30);
return isRechable;
}
参数可以是"http://192.168.0.77:8080/ws/api/customer/5"
或"http://example.com:8080/ws/api/customer/5"
但每次它返回 false 虽然我可以浏览 URL。