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?
|
closed as not constructive by Kev Jan 27 '12 at 1:35
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
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 used JSONLib, FlexJSON and Gson all with great success. Each has its best use.
|
|||||||||||||||
|
|
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). UPDATE: A year ago I started actually using Jackson and I can confirm that it is awesome :-). I especially like being able to switch back and forth between using a "tree model" (similar to XML DOM) and object mapping. For example, let's say I have the following JSON:
The data I really want is inside In addition, I have the following Java class:
I can use the following code to navigate through the JSON document and then map the object I want:
Without this capability, I would be stuck writing extra wrapper classes. Another impressive Jackson feature is the ability to map classes that you don't own (in other words, map a third-party Java class when you can't change the source code). See this blog entry for more details. Jackson is amazingly customizable. I could list many, many more features :-). Finally, don't miss 7 Killer Features that set Jackson apart from competition. |
|||||||||||||||||||||
|
|
Just went through this exercise. I wanted to represent arbitrary JSON as nearest Java equivalent. For me that is a HashMap/ArrayList Object. json-simple was excellent: tiny, with a simple API that generates HashMap/ArrayList with a single call. It also has extensions for object serialization/deserialization. I also tried gson: API was very object serialization oriented, and type safe, could not do what I needed simply. |
|||
|
I can recommend http://json-lib.sourceforge.net/. We have used it in few projects without problems. |
|||||||||
|
|
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'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. |
|||
|
|
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 JSON Tools library 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:
|
|||||
|
|
҉ works I was looking for a very simple way to do Php json encode in (server) and Java json decode (client), all seems too much to do only to achieve this. I came out to this which is really simple and it works perfect. Please see: more details click here |
||||
|
|
|
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. The following generalized recursive code uses my parser to parse a JSON file into a "DataStruct" - essentially a map of lists (Note that DataStruct and Callback are objects from another package which are not published with this parser:
|
||||
|
|
After exploring and actually using most of the major libraries listed here, I ended up writing a simplified API that is much easier to use and more fun to work with: |
|||
|
|
|
I will add one more tip for excelent JSON<->JAVA binding lib PoJSON, it is written specifically for the NetBeans IDE (by Petr Hrebejk) and thus it is used in production on large project. It is easy to use in any project, it is just not placed on the web as a separate project (afaik), however it is in a separate package "org.codeviation" here: http://hg.netbeans.org/main/file/9609b899e64d/kenai/src/org/codeviation |
|||
|
|
|
I have developed an Add-on for Android's in-built JSON Parser (or.json.*), which helps to convert JSON to Java Object- http://prasanta-paul.blogspot.com/2011/04/json-to-java-bean-conversion-for.html |
|||
|
|
|
A nice new library for Java is Serotonin JSON. It has lots of nice features. I say "new", but it's really been around for years, just not as open source. |
||||
|
|
I liked J2J - Json2Java from Sourceforge. Really easy to map JSON to almost any java object by only annotating the class using JsonElement and then passing the java and class to JsonReader like:
|
||||
|
|
|
Give JavaJson a try. I wrote it and I would definitely love some feedback. |
|||||
|
