gpt4 book ai didi

java - 使用 xpath 选择重复值

转载 作者:太空宇宙 更新时间:2023-11-04 07:35:50 25 4
gpt4 key购买 nike

我有这个 XML,

<ROOT xmlns="Exceptions">
<Header>
<DateTime>2013-06-03 10:36:01</DateTime>
<Date>2013-06-03 10:36:01</Date>
</Header>
<Exceptions>
<Exception>
<Reference>1370252101917</Reference>
<Fatal>N</Fatal>
</Exception>
<Exception>
<Reference>1370252101918</Reference>
<Fatal>Y</Fatal>
</Exception>
</Exceptions>
</ROOT>

我可以使用ROOT/Exceptions/Exception/Reference选择第一个引用标记,如何选择第二个出现的引用标记?

谢谢

最佳答案

我从未在java中使用过xpath,但是ROOT/Exceptions/Exception/Reference应该匹配具有该路径的两个元素,并且您应该得到一个列表(也许您使用的函数只返回第一个匹配项?)

无论如何,

ROOT/Exceptions/Exception[2]/Reference

匹配第二个异常中的引用元素

关于java - 使用 xpath 选择重复值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16893924/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com