将 XML 文档转换为 DOM4J 文档以提取特定节点的值
我有一个包含各种节点的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
try this: