Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

4 Answers

up vote 7 down vote accepted

Sure there is: http://jsontoxml.utilities-online.info/

share|improve this answer
It can't convert this to xml: {"docs": {"success": true}} – ajsie Jun 29 '11 at 9:02
Seems like it only accepts strings as values. This one is converted successfully {"docs": {"success": "true"}} – Andrei Jun 29 '11 at 9:04

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.

share|improve this answer

Recently I was learning EmberJS so I have built another one XML to JSON online tool. It have an option to include attributes or not.

Check it out http://dfsq.info/xml2json.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.