gpt4 book ai didi

java - Android:从网站读取 HTML 并将其发布到屏幕上

转载 作者:行者123 更新时间:2023-12-01 05:15:48 24 4
gpt4 key购买 nike

我的目标是制作一个非常基本的应用程序,它读取 HTML 并将其存储到字符串中。我只对网站源代码中的一行感兴趣。我发现一个主题表明了这一点:

String bodyHtml = "null";
try {
String myUri = "http://www.spring8.or.jp/ext/ja/status/text.html";
HttpClient httpClient = new DefaultHttpClient();
HttpGet get = new HttpGet(myUri);

HttpResponse response = httpClient.execute(get);

// Build up result
bodyHtml = EntityUtils.toString(response.getEntity());
} catch (Exception e) {

}

url.setText(bodyHtml);

url 是我的 TextView 。据我所知,我已在 list 中正确设置了权限。

但是,当我在手机和模拟器上运行此代码时,它似乎根本不起作用。我什么也没得到。我错过了什么吗?

谢谢

最佳答案

试试这个而不是 EntityUtils

BufferedReader rd = new BufferedReader(new InputStreamReader(
response.getEntity().getContent()));
String line = "";
String newLine = "";
while ((line = rd.readLine()) != null) {
newLine = newLine.concat(line);
}
System.out.println(newLine);

关于java - Android:从网站读取 HTML 并将其发布到屏幕上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11240951/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com