将 XML 文档转换为 DOM4J 文档以提取特定节点的值

发布于 2024-12-03 19:43:34 字数 529 浏览 1 评论 0原文

我有一个包含各种节点的 XML 文档。我需要将一组节点放入一个字符串中。 示例:

<root>
<....many tags>
<TIFFs>
<TIFF>.......blah blah...</TIFF>
<TIFF>.......blah blah...</TIFF>
<TIFF>.......blah blah...</TIFF>
<TIFF>.......blah blah...</TIFF>
<TIFF>.......blah blah...</TIFF>
</TIFFs>
<other tags>
</root>

我试图获取 TIFF 节点和所有子节点的所有数据,即字符串中的 TIFF。我尝试过各种方法,我发现使用 Dom4J 在 Java 中是可行的。如果有任何建议,我将不胜感激。我使用 W3C 节点以不同的方式完成了它,但它并不每次都能正常工作。 提前致谢

I have an XML document with various nodes. I need to put a set of nodes into a string.
Example:

<root>
<....many tags>
<TIFFs>
<TIFF>.......blah blah...</TIFF>
<TIFF>.......blah blah...</TIFF>
<TIFF>.......blah blah...</TIFF>
<TIFF>.......blah blah...</TIFF>
<TIFF>.......blah blah...</TIFF>
</TIFFs>
<other tags>
</root>

I am trying to have all the data from the TIFFs node and all child nodes, namely TIFF in a string. I have tried various things, I came to know that it is possbile in Java with Dom4J. I would appreciate any suggestions on that. I had done it in a different way using W3C nodes, but it does not work correctly everytime.
Thanks In Advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

梦太阳 2024-12-10 19:43:34

试试这个:

List nodeList = document.selectNodes( "//root/tiffs/tiff" );
for(Node node : nodeList) { 
   System.out.println("tiff:" + node.getText();
}

try this:

List nodeList = document.selectNodes( "//root/tiffs/tiff" );
for(Node node : nodeList) { 
   System.out.println("tiff:" + node.getText();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文