Simplest method to Convert Json to Xml

前端 未结 5 1612
挽巷
挽巷 2020-12-06 05:12

I have web-service in .net. When I retrieve data from database, it returns JSON File in Android Mobile. How can I convert JSON File to XML Or text.

5条回答
  •  时光取名叫无心
    2020-12-06 06:11

    Standard org.json.XML class converts between JSON and XML in both directions.

    The conversion is not very nice as it does not create XML attributes at all (entities only), so XML output is more bulky than could possibly be. But it does not require to define Java classes matching the data structures that need to be converted.

提交回复
热议问题