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 页面,使用doc.select("tr")它时应该放置一个包含所有<tr>元素的列表。当我调查该列表的大小时,它告诉我 242。虽然当使用 Chrome 通过简单的搜索对源进行双重检查时,它得到了 264 次点击。
doc.select("tr")
<tr>
这使我的代码中断。似乎 jsoup 不能很好地处理很多元素。
我正在解析一个带有表格、262 * 88 个单元格和几乎一样多的帮助标签的页面。这是 jsoup 没有列表中的对象的原因吗?或者你为什么认为我有这个问题?
网站可能存在差异。如果您使用桌面浏览器(例如移动设备),您通常会获得不同的视图。
你可以用 jsoup 试试这个:
System.out.println(doc)