我有以下JSON結構:轉換JSON爲XML在Java屬性
{
"userId": "55",
"Unit": [
{
"id": "1",
"unitname": "unit1",
"eventId": "2",
"transactiontype": "1"
},
{
"id": "2",
"unitname": "unit2",
"eventId": "2",
"transactiontype": "1"
},
{
"id": "3",
"unitname": "unit3",
"eventId": "2",
"transactiontype": "2"
}
]
}
,我需要將其轉換爲下面的XML格式:
<Units userId="55">
<Unit id="1" unitname="unit1" eventId="2" transactiontype="1"/>
<Unit id="2" unitname="unit2" eventId="2" transactiontype="1"/>
<Unit id="3" unitname="unit3" eventId="2" transactiontype="2"/>
</Units>
雖然通過Java我是個嘗試它得到一個XML,但它顯示XML元素如下:
<UnitId>1</UnitId>
有人可以請幫我關於什麼需要b完成後,我可以獲得所需的XML格式,即作爲屬性。
將JSON轉換爲XML有很多種方法,您需要說出您正在使用哪一種方法以及如何使用它。 –