我正在尝试读取缓冲区(android 应用程序)并将值设置为我的TextView
'httpStuff'
. 但我认为我没有从 URI 中得到一些响应。
我没有收到任何运行时错误。我尝试了许多相同逻辑的味道。似乎没有任何工作。
INTERNET
清单中已经设置了权限。SdkVersion="15"
. 有什么帮助吗?
HttpClient client = new DefaultHttpClient();
URI website = new URI("http://www.mybringback.com");
HttpGet request = new HttpGet();
request.setURI(website);
HttpResponse response = client.execute(request);
HttpEntity entity = response.getEntity();
InputStream is = entity.getContent();
BufferedReader in = new BufferedReader(new InputStreamReader(is));
httpStuf.setText( in.readLine());