我正在使用 jsoup 从 xml 文件中提取一些属性xmlDoc.select("ns|properties")
问题:它找到所有出现的“属性”标签。我只想要 ns:tests 标签之外的属性。我怎样才能排除它们?
<ns:interface>
</ns:interface>
<ns:tests>
<ns:properties>
<ns:name>name</ns:name>
<ns:id>2</ns:id>
</ns:properties>
</ns:test>
<ns:properties>
<ns:name>name</ns:name>
<ns:id>1</ns:id>
</ns:properties>