up vote 0 down vote favorite
share [g+] share [fb]

Does anyone know of an application that can be used to convert a large JSON file to XML?

We have a program that takes XML input, and we need to feed it some data that has arrived as a JSON file. Rather than update the whole program to take JSON input, it seems simpler to just convert this file.

The JSON file is between 3 and 4 GB (and that may be compresed).

TIA.

link|improve this question

How big will your output XML be? Will you be keeping all of the JSON data? – Tom Hubbard Jun 30 '09 at 9:54
Will the JSON files keep arriving or is it just a noe off, are you sure it isn't worth updating the program? If you are deserializing XML, then deserializing JSON shouldn't be that much of a step. – Mark Dickinson Jun 30 '09 at 10:00
Sorry the comment above contains a typo, 'noe' should read 'one' – Mark Dickinson Jun 30 '09 at 10:01
It is definitely a one-off. And the program is configured using a lot of x-query for internal xml processing, so updating the program probably means writing a conversion to XML on input anyway. – Anon Guy Jul 1 '09 at 1:12
feedback

1 Answer

You can try JSON.org's XML class: http://json.org/javadoc/org/json/XML.html

Create a JSONObject via the JSONObject class, and convert it using the XML class. I have not tested it on large files, but it doesn't hurt to try.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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