gpt4 book ai didi

java - XPath:提取多个子节点值

转载 作者:行者123 更新时间:2023-12-02 11:21:28 25 4
gpt4 key购买 nike

我正在尝试从 <to> 中提取值使用 XPath 的多个节点,但我得到的只是第一个值

SOAP 看起来像:

<addressBlock xmlns:i="http://www.w3.org/2001/XMLSchema-instance" s:relay="1">
<from>mailto:user1@test.local</from>
<to>mailto:user2@test.local</to>
<to>mailto:user3@test2.local</to>
</addressBlock>

我的代码如下:

private String extractFieldFromXml(Document doc, XPath xPath, String expression)
{
try
{
Node node = (Node) xPath.compile(expression).evaluate(doc, XPathConstants.NODE);
return node == null ? null : node.getTextContent();
} catch (XPathExpressionException e)
{
log.info(e.getMessage());
return null;
}

}

然后我尝试这样做:

String to = extractFieldFromXml(doc, xpath, msgExpression);

for (Iterator<String> to = to.iterator(); to.hasNext();) {
String value = to.next();
System.out.println(value);
}

最佳答案

获取所有to值的XPath是

/addressBlock/to

此表达式返回 to/text() 字符串的串联。
使用 Java 对此结果的所有项目运行 for-each

关于java - XPath:提取多个子节点值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49887138/

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