Java网页上的标签?
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要找到一种方法来<p>使用 Java 提取网站标签的字符串值。我见过一些人用 Javascript 做类似的事情,但我希望找到一种使用 Java 的方法。我正在尝试为网站制作应用程序,所有新闻帖子都在<p>标签内,而不是 RSS 提要。
<p>
谢谢!
考虑使用Jsoup来执行任务,有了它,任务可以像
for(Element e: doc.getElementsByTag("p")) { System.out.println(e.text()); }