关于 XMLObject 的教程
感谢任何人可以向我指出一个使用 org.apache.xmlbeans 中的 XMLObject 的好教程。我一直在做 axis2 ,它给了我 XMLObject 的响应。但是,我无法访问 getTextContent()。
经过几个小时的谷歌搜索后,我意识到我可能需要将 XMLObject 转换回 ArrayList 或类似的东西。
Appreciate anyone could point me to a nice tutorial of using XMLObject from org.apache.xmlbeans. I have been doing axis2 which gives me a response of XMLObject. However, I can't get to the getTextContent().
After googling for hours, I realise I maybe need to convert the XMLObject back to ArrayList or something like that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您已经尝试过
toString()
了吗?这应该为您提供元素(或属性)的内容。Have you tried
toString()
already? That should give you the contents of the element (or attribute).从 XmlObject 中,您可以通过多种方式获取底层 xml 文档。请参阅
.newReader()
、.newDomNode()
、.newCursor()
或.xmlText()
。From an XmlObject you can get to the underlying xml document in many ways. See
.newReader()
,.newDomNode()
,.newCusrsor()
, or.xmlText()
.