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

What are some good tools for quickly and easily converting XML to JSON in Java?

Thanks in advance for all your help!

share|improve this question
Why not just use the XML as is? There is an impedence mismatch between JSON and XML which means that you don't gain much in terms of the ease of programming interface. you don't save a significant amount of space in the conversion. Speaking as someone who has done this numerous times myself, the main advantage you'd get from the conversion comes from some specific knowledge about the domain, and what's important about the data contained in the XML, and writing a custom program to convert. I think if you tell us why you need to do this you'll get much better answers. – Breton Dec 1 '09 at 0:09
i can't use XML directly due to a requirement in the spec, but i agree with you. thanks! – BeachRunnerFred Dec 1 '09 at 0:29
@BeachRunnerJoe : What import do I need to write? import net.sf.json.JSONObject; or import org.json.JSONObject;. Also which jar do I need to include? – Fahim Parkar Jun 3 '12 at 16:20

3 Answers

The JSON in Java page on json.org has some great resources.

Looks like XML.java and JSONML.java are the classes you're looking for:

public class Main {

    public static int PRETTY_PRINT_INDENT_FACTOR = 4;
    public static String TEST_XML_STRING =
        "<?xml version=\"1.0\" ?><test attrib=\"moretest\">Turn this to JSON</test>";

    public static void main(String[] args) {
        try {
            JSONObject xmlJSONObj = XML.toJSONObject(TEST_XML_STRING);
            String jsonPrettyPrintString = xmlJSONObj.toString(PRETTY_PRINT_INDENT_FACTOR);
            System.out.println(jsonPrettyPrintString);
        } catch (JSONException je) {
            System.out.println(je.toString());
        }
    }
}

Looks like it does the job. Output is:

{"test": {
    "attrib": "moretest",
    "content": "Turn this to JSON"
}}

Expanded from my original entry. I hope this helps.

share|improve this answer
great! i'll look into it, thanks so much! – BeachRunnerFred Dec 1 '09 at 0:48
1  
Warning: The json.org.XML package does not exist in Android! – Ludovic Landry Nov 25 '11 at 14:49
1  
@danieltalsky : What import do I need to write? import net.sf.json.JSONObject; or import org.json.JSONObject;. Also which jar do I need to include? – Fahim Parkar Jun 3 '12 at 16:15
download all the files not just XML.java. From here: github.com/douglascrockford/JSON-java/downloads – user905374 Oct 18 '12 at 15:37

I don't know what you exact problem is, but if your receiving XML and want to return JSon (or something) you could also look at JAX-B. This is a standard for marshalling/unmarshalling Java POJO's to XML and/or Json. There are multiple libraries that implement JAX-B, for example Apache's CXF.

share|improve this answer

The only problem with JSON in Java is that if your XML has a single child, but is an array, it will convert it to an object instead of an array. This can cause problems if you dynamically always convert from XML to JSON, where if your example XML has only one element, you return an object, but if it has 2+, you return an array, which can cause parsing issues for people using the JSON.

Infoscoop's XML2JSON class has a way of tagging elements that are arrays before doing the conversion, so that arrays can be properly mapped, even if there is only one child in the XML.

Here is an example of using it (in a slightly different language, but you can also see how arrays is used from the nodelist2json() method of the XML2JSON link).

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.