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.
在一个<div>元素中,我有三种类型的元素(其中包括):
<div>
<span class="some_name_1">
<div class="some_name_2">
<p>
问题是我不知道它们的数量和顺序。所以我需要将上面显示的所有这些元素放在某种数组中,这样我就可以遍历它们。
我对 JSoup 很陌生 - 我怎么能做到这一点?顺序对我来说至关重要。
谢谢!
嗯,你需要迭代元素吗?这很简单。
Document doc = Jsoup.connect(url).get(); Element div = doc.select("div").first(); //here you get your parent div for (Element element : div.children()) { //Here you can acccess all childs of your div }