gpt4 book ai didi

java - xpath 无法正常工作

转载 作者:行者123 更新时间:2023-12-01 17:16:25 24 4
gpt4 key购买 nike

XPATH : //requestHeader//*[local-name()='clientUsername']

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:req="http://www.ABC.com/ws/requestHeader"
xmlns:web="http://com/ABC/XXX/YYY">
<soapenv:Header/>
<soapenv:Body>
<web:isServiceUp>
<web:requestHeader>
<req:clientUsername>GENT</req:clientUsername>
<req:languageCode>?</req:languageCode>
</web:requestHeader>
</web:isServiceUp>
</soapenv:Body>
</soapenv:Envelope>

它应该是 return GENT 但它返回空字符串...

最佳答案

您需要具备以下条件:

//web:requestHeader//*[local-name()='clientUsername']

您需要查找 web:requestHeader 而不仅仅是 requestHeader:

您可以测试一下 here 。仅使用 requestHeader 尝试一下,您会发现它什么也没有返回。当您将其更改为 web:requestHeader 时,您将获得您要查找的元素。

关于java - xpath 无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21867365/

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