What are some good tools for quickly and easily converting XML to JSON in Java?
Thanks in advance for all your help!
|
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:
Looks like it does the job. Output is:
Expanded from my original entry. I hope this helps. |
|||||||||||||
|
|
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. |
|||
|
|
|
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). |
|||
|
|
import net.sf.json.JSONObject;orimport org.json.JSONObject;. Also which jar do I need to include? – Fahim Parkar Jun 3 '12 at 16:20