我做了很多研究,但在这方面我没有取得任何成功。我想获取对特定帖子的评论。我认为这个网站肯定会帮助我解决这个问题。
我为此做了一些代码,但它正在打印主要帖子,我的要求是获取特定帖子的评论。在这段代码中,我使用了jsoup
库。
Elements hiddenElements = doc.select("code.hidden_elem");
for (Element hidden : hiddenElements) {
for (Node child : hidden.childNodesCopy()) {
if (child instanceof Comment) {
hidden.append(((Comment) child).getData());
}
}
}
Elements articles = doc.select("div[role=article]");
for (Element article : articles) {
if (article.select("span.userContent").size() > 0) {
String text = article.select("span.userContent").text();
String imgUrl = article.select("div.photo img").attr("abs:src");
System.out.println(String.format("%s\n%s\n\n", text, imgUrl));
}
}
对此的帮助将不胜感激。:)