本文介绍了在JSoup中逐个元素地获取的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我尝试获取div类中包含的所有信息: bg_block_info
,但我得到另一个div类的信息< div class = bg_block_info pad_20>
为什么我弄错了?
I try to get all info contained in div class named : bg_block_info
, but instead i get info for another div class <div class="bg_block_info pad_20">
Why i'm getting it wrong ?
Document doc = Jsoup.connect("http://www.maib.md").get();
Elements myin = doc.getElementsByClass("bg_block_info");
推荐答案
您可以组合链式选择器来优化查询,例如:
You can combine and chain selectors to refine your query, e.g.:
Document doc = Jsoup.connect("http://www.maib.md/").get();
Elements els = doc.getElementsByClass("bg_block_info").not(".pad_10").not(".pad_20");
这篇关于在JSoup中逐个元素地获取的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!