jackson xml 节点,其属性为 json

问题描述 投票:0回答:1

当尝试使用 jackson 2.12.7(XMLMapper 和 ObjectMapper)将 xml 转换为 json 时,带有属性的元素出现问题。

JsonNode node = xmlMapper.readTree(xml);
String json = objectMapper.writeValueAsString(node);

来自 xml:

<Address><Province Code="MI">MILAN</Province></Address>

获取这个json:

{"Province":{"Code":"MI","":"MILAN"}}

"":"米兰"

当该名称为空时如何设置默认标签名称(例如:“Value”或“City”等)?

json xml jackson attributes transform
1个回答
-1
投票

有人找到解决方案吗?这是生成的损坏的 json

© www.soinside.com 2019 - 2024. All rights reserved.