Java-通过内部文本选择节点
我正在将代码从 c# 转换为 java。
我有以下 xml 结构:
<Foo>
<Son>
<Id>xxx</Id>
</Son>
... more sons
</Foo>
我需要根据 Id 值选择节点(可以多个。
我在 c# 中有这一行:
XmlNodeList res=xmlDoc.SelectNodes("descendant::Son[Id='xxx']");
我尝试将其转换为以下内容:
NodeList res=(NodeList)xPath.evaluate("xpath expr",inputSource,XPathConstants.NODESET);
但是,我没有设法编写正确的 XPath 表达式
有什么帮助吗
? 莎拉
I am converting code from c# to java.
I have the following xml structure:
<Foo>
<Son>
<Id>xxx</Id>
</Son>
... more sons
</Foo>
I need to select nodes according to the Id value(can be more than one.
I have this line in c#:
XmlNodeList res=xmlDoc.SelectNodes("descendant::Son[Id='xxx']");
I tried to convert it to the following:
NodeList res=(NodeList)xPath.evaluate("xpath expr",inputSource,XPathConstants.NODESET);
However, I didn't manage to write the right XPath expression.
Any help?
Thanks,
Sara
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不在我的开发机器上,但过去使用过 XPath,这突然浮现在我的脑海中:
另外,在你的问题中提及你尝试过的内容以及结果与你的目标输出。
I'm not at my development machine, but having used XPath in the past, this pops into mind:
Also, it's helpful in your question to mention what you've tried, and how the results differ from your target output.