将 org.apache.xmlbeansXmlObject 转换为 nu.xom.Element 的简单方法
我使用 XMLBeans 中的 scomp
工具生成 java 类,然后填充XmlObject 中的字段(我这段代码是前段时间写的)。我现在需要将此对象转换为 Element 使用的类XOM 库。
有没有比使用 XmlCursor
遍历 XmlObject
然后将子节点添加到目标 Element
更简单的方法?我查看了可能使用一些 org.w3.dom.* 类,但我无法找到可以在两个库之间轻松翻译的内容。
I have used the scomp
tool from XMLBeans to generate java classes and then populated the fields in an XmlObject (I wrote this code some time ago). I now need to convert this object into the Element class used by the XOM library.
Is there an easier way than by traversing the XmlObject
using an XmlCursor
and then adding child nodes to the target Element
as you go? I had a look at possibly using some of the org.w3.dom.*
classes but I'm having trouble finding something that will be easily translatable between the two libraries.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想我已经找到了一个解决方案,我将把它留在这里,以防其他人遇到这个问题。
I think I've worked out a solution which I'll leave here in case anyone else has this problem.