我有以下内容:
try {
InetAddress.getByName(Constants.CORE_API_SERVER).isReachable(5000);
} catch (IOException e) {
Log.d("RegisterUUID", Constants.CORE_API_SERVER + " is NOT reachable");
}
网址为:
public static final String CORE_API_SERVER = "api.something.com";
我遇到的问题是当我尝试访问此网址时,收到以下消息:
10-26 11:27:39.159 30689-30746/com.something.app D/RegisterUUID: IOException: java.net.MalformedURLException: Protocol not found: api.something.com/application/registerUUID
我理解这个错误...但是当我将http://添加到网址时......突然间地址无法访问。但是,它可以通过http://api.something.com
的浏览器访问我错过了什么吗?