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.
我正在尝试使用 jsoup 解析我的 html 文件,并且我需要构建 Elements 对象,该对象将包含一个 div 数组(如下图所示)。我如何使用选择语法来做到这一点?
Elements 的每个元素都必须包含“新闻”:
谢谢!
您使用点 ( .) 选择器选择类名,使用 选择 id #,因此:
.
#
Elements newsClass = myDocument.select(".news"); Elements newsMainId = myDocument.select("#newsMain");