Java-通过内部文本选择节点

发布于 2024-12-16 02:16:31 字数 505 浏览 0 评论 0原文

我正在将代码从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流绪微梦 2024-12-23 02:16:31

我不在我的开发机器上,但过去使用过 XPath,这突然浮现在我的脑海中:

xPath.evaluate("/Foo/Son[Id='xxx']",...)

另外,在你的问题中提及你尝试过的内容以及结果与你的目标输出。

I'm not at my development machine, but having used XPath in the past, this pops into mind:

xPath.evaluate("/Foo/Son[Id='xxx']",...)

Also, it's helpful in your question to mention what you've tried, and how the results differ from your target output.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文