Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用此代码,它返回 xml 文档的节点对象
def rootNode = new XmlParser().parseText(text)
如何将此对象解析为 JSON 对象(可能使用 JsonBuilder)?
我确实尝试通过一个字符串对象 (XmlUtil.serialize(rootNode)) 但它没有成功。
有什么我可以使用的或者我需要创建自己的东西吗?
提前致谢
您必须推出自己的解决方案。
Json 没有属性的概念,您需要决定如何处理同名的兄弟标签。
从 xml 映射到 Json 没有直接明显的方法