gpt4 book ai didi

Android jSoup 帮助

转载 作者:行者123 更新时间:2023-11-30 04:40:06 25 4
gpt4 key购买 nike

我正在尝试从这个 url http://skyalipi.blogspot.com/2011/04/there-is-no-resistance-without.html 解析 html使用 jSoup。我正在使用这段代码

Document doc = Jsoup.parse("http://skyalipi.blogspot.com/2011/04/there-is-no-resistance-without.html");  

Log.d("test", "the elements"+doc);

在日志中,我得到以下内容

05-26 12:05:05.355: DEBUG/test(696): the elements<html>
05-26 12:05:05.355: DEBUG/test(696): <head></head>
05-26 12:05:05.355: DEBUG/test(696): <body>
05-26 12:05:05.355: DEBUG/test(696): http://skyalipi.blogspot.com/2011/04/there-is-no-resistance-without.html
05-26 12:05:05.355: DEBUG/test(696): </body>
05-26 12:05:05.355: DEBUG/test(696): </html>

我想获取段落内容。我不知道我哪里错了。我也引用了以下网址http://jsoup.org/cookbook/extracting-data/attributes-text-html请帮忙

最佳答案

Jsoup 将您的 URL 视为您要解析的文本,并将其转换为有效的 HTML 以便进行解析。我认为您想连接到该网站并检索该网址的内容,然后解析结果:

Document doc = Jsoup.connect("http://skyalipi.blogspot.com/2011/04/there-is-no-resistance-without.html").get();

编辑

看看the documentation举些例子。您可以执行以下操作:

Element example = doc.getElementById("alternatives1");
Log.d("test","example "+example.text());

关于Android jSoup 帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6134847/

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