-1
HttpClient hc = new DefaultHttpClient();
HttpPost post = new HttpPost("http://www.yahoo.com.hk");
HttpResponse rp = hc.execute(post);
if(rp.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
String str = EntityUtils.toString(rp.getEntity());
Log.e("STRING:",str);
}
它也不打印錯誤消息。它發出超時警告。給我代碼連接雅虎或谷歌服務器。httpclient android
給我代碼!!!至少告訴我們你做了什麼。 – 2011-02-23 12:29:44
你的代碼是正確的。您的啓動超時警告可能是問題,可能與您的代碼無關。 – Rich 2011-02-23 12:42:38
顯示logcat跟蹤。 – 2011-02-23 12:55:14