在 Java 中使用命名空间创建 XML 文档
我正在寻找可以构造使用命名空间的 XML 文档的示例 Java 代码。 我似乎无法使用我常用的最喜欢的工具找到任何内容,因此希望有人能够帮助我。
I am looking for example Java code that can construct an XML document that uses namespaces. I cannot seem to find anything using my normal favourite tool so was hoping someone may be able to help me out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有多种方法可以做到这一点。 仅举几个示例:
使用 XOM
使用 W3C DOM
There are a number of ways of doing this. Just a couple of examples:
Using XOM
Using Java Implementation of W3C DOM
我不确定你想做什么,但我使用 jdom 来处理我的大多数 xml 问题,它支持命名空间(当然)。
代码:
生成以下 xml:
其中应该包含您需要的所有内容。 希望有帮助。
I am not sure, what you trying to do, but I use jdom for most of my xml-issues and it supports namespaces (of course).
The code:
produces the following xml:
Which should contain everything you need. Hope that helps.