我在解析 SOAP 返回的 XML 元素时遇到问题,因为 XML 结构是这样的:
<a:journey>
<a:infantprice>0</a:infantprice>
...
</a:journey>
我努力了
.select("journey")
.select("a:journey")
但仍然没有得到 xml 值。是否可以使用 Jsoup 选择具有该格式的 XML 段?
提前致谢
我想,我得到了我的问题的答案。
我应该使用:
.select("a|journey");
根据文档:
ns|tag:在命名空间中按标签查找元素,例如 fb|name 查找元素
来源:http: //jsoup.org/cookbook/extracting-data/selector-syntax
谢谢