现在我一直在找寻,而仅仅打上了脚石,就能够找到正确的答案。 短篇大事,我翻一遍,把一页从 on上,用在我的盒子上。 我迫切需要在每一“主题”之间穿透线,因此,我把
标签放在我的营地。 它完全在一个网络浏览器上运作,但在我的安康申请中,我实际上可以看到
标签为明晰文本。 只是试图将其改为“延伸/新线”。 任何想法?
我的方法守则:
public String getInbox(String where){
BufferedReader in = null;
String data = null;
try{
HttpClient client = new DefaultHttpClient();
URI website = new URI("http://example.com/getInbox.php?where="+where);
HttpPost post_request = new HttpPost();
post_request.setURI(website);
HttpGet request = new HttpGet();
request.setURI(website);
//executing actual request
//add your implementation here
HttpResponse response = client.execute(request);
in = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
StringBuffer sb = new StringBuffer("");
String l = "";
String nl = System.getProperty("line.separator");
while ((l = in.readLine()) != null) {
sb.append(l+nl);
}
in.close();
data = sb.toString();
return data;
}catch (Exception e){
return "ERROR";
}
}
网页上的产出:
eg test
eg test
eg lol
eg lol
eg testing
甲状腺素的产量:
eg test<br />eg test<br />eg lol<br />eg lol<br />eg testing<br />eg