7

Why this http request no respond?

view full story
linux-howto

http://stackoverflow.com – I set the following Http request. but Why this HTTP request no respond? AsyncHttpClient client = new AsyncHttpClient(); Log.d("click","click"); client.get("http://www.baidu.com", new AsyncHttpResponseHandler() { @Override public void onSuccess(String response) { Log.d("response",response); //System.out.println(response); } }); Anyone's help is very thanksful. (HowTos)