我很新的android和嘗試執行溝通到REST server
。HttpGet在android中,UnresolvedHostException
我開始使用Get方法,但在模擬器上使用android 2.0
時遇到了一些問題。
String url = "http://www.google.fr/search?q=android"
HttpClient client = new DefaultHttpClient(new BasicHttpParams());
HttpGet getMethod = new HttpGet((url));
HttpResponse httpResponse = client.execute(getMethod);
HttpEntity = httpResponse.getEntity());
int length = (int) httpEntity.getContentLength();
=> length is -1 :-(
查看日誌給我UnresolvedHostException
。
我在谷歌搜索,發現幾個傢伙有同樣的問題,但誰沒有找到任何答案。
有沒有一種特殊的方式來配置android模擬器有這個工作?
爲了準確,我在android manifest
中添加了Internet訪問。
非常感謝您的幫助。 Luc
我沒有看到UnresolvedHostException了。似乎它在我嘗試通過瀏覽器訪問URL後消失了。我無法弄清楚發生了什麼事。我會繼續測試並更新問題。 非常感謝您的幫助。 – Luc 2009-12-29 08:32:26