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.
我想提取未知站点上所有段落之间的所有文本(这意味着我不知道站点的结构)。
到目前为止,我有:
Elements paragraphEmail = doc.select("p");
在哪里doc = Jsoup.connect(url).get();
doc = Jsoup.connect(url).get();
for (Element e : paragraphEmail) { }
如何做到这一点?
doc.select("p")会给你所有的段落元素作为一个集合Elements。
doc.select("p")
Elements
使用 for each 循环来获取文本:
for(Element e : paragraphEmail){ System.out.println(e.text()); }
我建议您查看 Jsoup 食谱和 API 参考,以更熟悉 Jsoup 中的方法。
食谱 API 参考