try {
HttpClient client = new DefaultHttpClient();
HttpGet request = new HttpGet("http://www.google.com");
client.execute(request);//it fails at this line
Log.e("yo", "yo");
} catch (Exception e) {}
有没有人解决这个问题,因为我遇到了同样的问题。我的设备连接到同一个网络,在浏览器中粘贴 URL 有效,但使用 HTTP 无效。