我正在尝试使用HTTP请求获取JSON文件:
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(url);
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
is = entity.getContent();
我在httpclient.execute
上收到超时异常。
这不是一个URL问题,因为如果我把它放在浏览器上它工作正常。我正在使用xampp
,我已经授予远程连接权限。
我也是用异步任务做的。它昨天工作正常,今天我再次尝试,它不再起作用了。
答案 0 :(得分:0)
将localhost替换为url中包含xampp系统的ip地址。