将 dom4j 文档转换为 W3c 文档
我需要将使用 dom4j 构建的 XML 转换为 w3c 文档,但不知道如何操作。
I need to convert XML built with dom4j to a w3c document and don't have any idea about how do it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看 DOMWriter。这对我有用:
Check out DOMWriter. This works for me:
我假设您想要从:
到:
来自 dom4j 快速入门指南< /a>:
来自关于字符串到文档的 JavaRanch 示例:
将 2 和你应该有你需要的东西。
I'm assuming you want to go from:
To:
From the dom4j quick start guide:
From a JavaRanch example on String to Document:
Combine the 2 and you should have what you need.
如果您有大型文档,出于性能原因,您可能希望避免将文档序列化为文本。在这种情况下,最好直接使用 SAX 事件来进行转换:
If you have large documents, you may want to avoid serializing your Document to text for performance reasons. In that case, it's best to use SAX events directly to do the transformation: