Json在java中转换为Xml

时间:2017-08-30 07:37:29

标签: java json xml

如何将Json转换为xml

我的json看起来像这样

JSON

{
 "udtList": {
   "udt": [
   {
    "id": "1004",
    "subItem": "1",
    "Amount": "2000.0"
   },

]

} }

在转换后期待XML

<?xml version="1.0" encoding="UTF-8" ?>
<udtList>
    <udt>
        <id>1004</id>
        <subItem>1</subItem>
        <Amount>2000.0</Amount>
    </udt>
</udtList>

1 个答案:

答案 0 :(得分:0)

JSONObject json = new JSONObject(str);
String xml = XML.toString(json);