Can anyone recommend a good Java JSON library (better than the one from http://json.org/)? I've also found JSON-lib, which definitely looks like an improvement, but I'm wondering if there is anything that is even better than that?
|
10
|
|||||||||
|
|
|
I can recommend http://json-lib.sourceforge.net/. We have used it in few projects without problems. |
||
|
|
|
|
I've used Jettison and it works well. |
||
|
|
|
|
You may try using GSON. It's downloadable at http://google-gson.googlecode.com/files/google-gson-1.4-release.zip Quite simple to use actually. I used it to parse JSON results from Yelp and there is a simple example here:
|
||
|
|
|
|
Gson can also be used to serialize arbitrarily complex objects. Here is how you use it:
Gson will automatically convert collections to JSON arrays. Gson can serialize private fields and automatically ignores transient fields. While deserializing, Gson can automatically convert JSON arrays to collections or arrays. Gson uses the specified class as the primary specification for deserialization. So, any extra fields available in the JSON stream are ignored. This helps design secure systems that prevent injection attacks. You can also extend Gson's default serialization and/or deserialization behavior by registering custom type adapters. For more details: see the user guide at the project: http://code.google.com/p/google-gson/ |
|||
|
|
|
|
I've used JSONLib, FlexJSON and Gson all with great success. Each has it's best use.
YMMV |
||
|
|
|
|
I notice that there is also a library called google-gson. I haven't tried it yet. Here's how it describes itself:
|
||
|
|
|
I've been meaning to try Flexjson. It looks like it uses reflection on bean-style properties and uses similar rules as Hibernate/JPA lazy-loading for serialization, so if you give it an object to serialize it will leave out collections (unless you tell it to include them) so you don't end up serializing the entire object graph. The json.org library does pretty well with serializing basic beans with reflection, but doesn't have these advanced features. Might be worth checking out, especially if you use an ORM solution. |
||
|
|
|
I wrote a JSON "pull-api" parser (3 classes, 18K), which I really like using. I find the pull metaphor much more usable than the event metaphor, and creating a document tree using pull is trivial. FWIW I didn't much care for the www.json.org parser either. My biggest complaint with the offerings out there is the size of them - we target a download-constrained applet market. I remember lying in bed one night at about 2am wondering "how hard could it be", after a bit I got up and started writing - this tiny parser is the result. JSON Tools looks good too. I am going to post the package on my website eventually - I could make the effort and post it by the end of the coming weekend if that time frame suits you? Note that the code is almost entirely self contained; a few minor tweaks will be needed (like changing the JsonException superclass - adding throws clauses if you don't want to use RuntimeException). Comment on this if you would like me to do that. The following generalized recursive code parses a JSON file into a "DataStruct" - essentially a map of lists (Note that DataStruct and Callback are objects from another package which I won't be publishing with this parser, though I will publish both separately at a later time):
|
|||
|
|
|
|
I've used JSON Tools library and it works well. |
||
|
|
|
|
I have no personal experience with the following approach,but it could make sense to consider: XStream(xml <-> java data binding) with Jettison driver (xml<->json mapper), more details are available here. That's from their site:
|
||||
|
|
|
I can't truly recommend this, because I've never used it, but Jackson sounds promising. The main reason I mention it is that the author, Tatu Saloranta, has done some really great stuff (including Woodstox, the StAX implementation that I use). |
||||||||||||||
|
