Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an online JSON to XML converter? [closed]

Tags:

json

xml

I wonder if there is an online JSON to XML converter I can use.

like image 308
ajsie Avatar asked Jun 29 '11 08:06

ajsie


2 Answers

Sure there is: http://www.utilities-online.info/xmltojson/

(URL fixed to moved location. This comment necessary to meet minimum edit requirements.)

like image 171
Andrei Avatar answered Oct 11 '22 12:10

Andrei


Another one http://json.online-toolz.com/tools/xml-json-convertor.php

But it skips some data:

<test>
  <el id="1">content</el>
</test>

you'll get

{"test":{"el":"content"}}

So id attribute will be lost.

like image 28
Karim Avatar answered Oct 11 '22 12:10

Karim