Unable to Resolve Host : No Address Associated With Hostname
一般形如:Unable to resolve host “www.xxxx.com” : No address associated with
hostname
碰到这个问题是在android系统中。
检测如下几点:
1. 浏览器使用了proxy,但是你的app没有。设置
System.setProperty("http.proxyHost", "my.proxyhost.com");
System.setProperty("http.proxyPort", "1234");
2. 浏览器可以访问网络,但是app不行?
3. 是不是SSL的原因。
自己的遇到这个问题,最终发现是app的网络设置有问题,改正后,就可以连接网络了。