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.
我是 Android 开发和 HTML 解析的新手。有特定的结构,例如
<div class="submitted"> TEXT 1 <div class="class"> TEXT 2 </div></div>
我只需要提取TEXT 1。
元素 a = doc.select("div[class]").get(x); 其中 x - 整数,不能按我的需要工作。此外,我无法指定 select("div[class="submitted"])。
如何仅从“提交”类中选择?
您应该阅读文档。您可以通过 选择班级div.submitted。
div.submitted