up vote 259 down vote favorite
131
share [g+] share [fb]

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?

thanks

link|improve this question

68% accept rate
9  
One thing that'd help is to explain in which ways you want alternative to be better -- more functionality, more convenient, more efficient, better documentation or something else? – StaxMan Apr 26 '09 at 2:21
1  
Yes... what is wrong with the existing ones? Only thing I can think of is type-safety, but when I tried to fix that, it turned out to be impossible. – Thomas Nov 10 '09 at 18:46
13  
A lot has changed since this question was asked 2 years ago. Here is a more recent benchmark of java serializers: code.google.com/p/thrift-protobuf-compare/wiki/Benchmarking Notable: "Omitted from the first three charts: json/google-gson and scala. These serializers are so slow, they would break the scale of our charts. See below for the naked data." I'm using Jackson Json on an android app, which is incredibly fast, and come a very long way since this question was asked/answered. – FrederickCook Dec 13 '10 at 6:23
1  
One of the shortcomings of the json.org library is that it accepts unquoted strings, breaking the JSON specification. At the very least, they could have included a parameter to enable strict parsing. – user359996 Mar 25 '11 at 1:08
1  
Frederick, I think your link should be in an answer, or at least mentioned in bigger text in the question. – Shurane Apr 14 '11 at 2:31
show 1 more comment
feedback

closed as not constructive by Kev Jan 27 at 1:35

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

protected by skaffman Dec 10 '11 at 11:00

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

23 Answers

up vote 145 down vote accepted

I notice that there is also a library called google-gson. I haven't tried it yet. Here's how it describes itself:

Gson is a Java library that can be used to convert Java Objects into its JSON representation. It can also be used to convert a JSON string to an equivalent Java object. Gson can work with arbitrary Java objects including pre-existing objects that you do not have source-code of.

There are a few open-source projects that can convert Java objects to JSON. However, most of them require that you place Java annotations in your classes something that you can not do if you do not have access to the source-code. Most also do not fully support the use of Java Generics. Gson considers both of these as very important design goals.

link|improve this answer
14  
+1. Gson is great. Here's an use example: stackoverflow.com/questions/1688099/converting-json-to-java/… – BalusC Dec 3 '09 at 16:42
6  
This is the solution I went with in the end, and months later I'm very happy with my decision. – sanity Dec 30 '09 at 16:23
1  
The problem with Gson (at least in versions up to 1.4) is that it is not able to handle circular references. This is very common in some scenarios (JPA/JDO objects being serialized to JSON...) – Guido García Mar 3 '10 at 22:20
2  
Most java json libs do not deal with cyclic deps -- that's more domain of object serialization frameworks. FWIW, XStream with Badgerfish (jettison) does handle them (since it's full object-serialization framework, although resulting json looks ugly, as its xml based, just converts to json via badgerfish) – StaxMan Mar 10 '10 at 23:27
2  
Design protocol meaning... ? Similar API, or something? I don't see much similarities between the two (which I think is good thing for GSON) – StaxMan Apr 9 '10 at 17:58
show 3 more comments
feedback

I've used JSONLib, FlexJSON and Gson all with great success. Each has its best use.

  • JSONLib is awsesome as a core JSON library when you just want to process all elements of a JSON.
    JSONArray cms = jsonObject.getJSONArray("containerManifests");
    for (Object o : cms) {
       JSONObject cm = (JSONObject) o;
       String cmId = cm.getString( "cmId" );
    }
    
  • FlexJSON shines with its deepSerialize method that can properly handle serializing all get methods presented in a bean obtained from Hibernate (lazy loaded).
    ContainerManifest cm = cmDAO.read( cmId );
    String cmJson = new JSONSerializer().deepSerialize( cm );
    
  • Gson seems to be the best API to use when you want to convert a json to a Java class. Other API only call set methods on the high level classes in the bean structure. If you have a deep bean structure, everything else will be implemented with dyna beans. Causes havoc elsewhere. Gson fully populates all low level values by calling all set methods for all data found in the JSON.
    Gson gson = new Gson();
    ContainerManifest cm = gson.fromJson( json, ContainerManifest.class );
    

YMMV
Andrew

link|improve this answer
1  
Great comparison. – Elliot Vargas Apr 8 '10 at 2:39
6  
+1 Good of you to point out the relative strengths. – user359996 Jul 21 '10 at 18:32
1  
"Gson fully populates all low level values by calling all set methods for all data found in the JSON." Actually, Gson does not use set methods when deserializing (nor does it use get methods when serializing). Instead, Gson uses reflection to directly reference the fields. Some future version of Gson will reportedly support using getters/setters instead of fields. A comment on issue 232 includes the possible changes necessary to enable getter support. – Programmer Bruce Jun 19 '11 at 6:10
feedback

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:

{
  "parent":
  {
    "irrelevantobject":
    {
      "foo": 1,
      "bar": 2
    },
    "interestingobject":
    {
      "qux": 3
    }
  }
}

The data I really want is inside "interestingobject". The rest is fluff that I don't care about (maybe returned by some REST API).

In addition, I have the following Java class:

public class InterestingObject {
  int qux;
}

I can use the following code to navigate through the JSON document and then map the object I want:

// Create a standard Jackson mapper object.
ObjectMapper mapper = ...

// Find the node I want using a DOM-like model.
JsonNode rootNode = mapper.read(theJsonString, JsonNode.class);
JsonNode interestingObjectNode = rootNode.get("parent").get("interestingobject");

// Parse it into a Java object.
MyInterestingObject interestingObject = mapper.treeToValue(interestingObjectNode,
  MyInterestingObject.class);

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.

link|improve this answer
7  
I second that, Jackson is a wonderful piece of work- much more efficient. – Robert Munteanu Jun 2 '09 at 11:03
5  
Hi Anders! JSON does not have a Date type (just strings, numbers, booleans), and each lib therefore has to define its own convention. That can lead to interoperability problems, esp. since default serializations for different languages are different. – StaxMan Aug 26 '09 at 20:40
4  
One thing that might be interesting wrt Jackson is the performance aspect (Jackson is specifically designed as a very high performance JSON package), see [code.google.com/p/thrift-protobuf-compare/wiki/Benchmarking] and [cowtowncoder.com/blog/archives/2009/09/entry_326.html] – StaxMan Oct 21 '09 at 6:41
1  
I second this. Jackson is also easy to use. See: spring-java-ee.blogspot.com/2010/12/… – Hendy Irawan Dec 26 '10 at 14:18
1  
I have used Jackson a lot, and it blows the competition away. – brianm Feb 2 '11 at 17:56
show 6 more comments
feedback

I can recommend http://json-lib.sourceforge.net/. We have used it in few projects without problems.

link|improve this answer
4  
This bug has made me sad: sourceforge.net/tracker/… – dfrankow May 29 '10 at 14:40
also, it has dependencies – njzk2 Oct 14 '11 at 15:45
feedback

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:

XStream xstream = new XStream(new JettisonMappedXmlDriver());
xstream.alias("product", Product.class);
System.out.println(xstream.toXML(product));
link|improve this answer
JAXB 2.0 also has support for JSON serialization using Jettison – Mark Renouf Jun 2 '09 at 19:58
Actually, any XML package that can use Stax API can use Jettison -- JAXB does, so there's no extra work involved (same is mostly true for XStream too, although it may have some additional support). – StaxMan Nov 30 '09 at 22:39
I found XSteam useful when converting Objects back and forth between Java & XML or JSON with the Jettison driver. If you want to influence the representation in XML/JSON to a larger degree than just naming tags and ignore properties, you'll be better of using one of the other libraries mentioned above. – wwerner Jun 2 '10 at 20:25
Isn't this a little perverse? – user359996 Mar 25 '11 at 1:12
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
I like FlexJSON as well and even modified it to be compatible with Microsoft's JSON serializer really easily. – Chad Grant Apr 24 '09 at 9:07
feedback

Gson can also be used to serialize arbitrarily complex objects. Here is how you use it:

Gson gson = new Gson();
String json = gson.toJson(myObject);

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/
Disclosure: I am one of the co-authors of Gson.

link|improve this answer
And yet another example is here: stackoverflow.com/questions/2496494/… – dma_k Mar 25 '10 at 11:25
Any plans to support circular dependencies in the near future? – Behrang Saeedzadeh Apr 12 '10 at 11:22
You can file a feature request for the project, if there isn't one. I know many developers would like to have this. – StaxMan Jul 22 '11 at 18:37
feedback

I've used JSON Tools library and it works well.

link|improve this answer
feedback

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:

  URL URLsource = null;
  JsonElement jse = null;
  BufferedReader in;
  try {
   URLsource = new URL("YELP_API_REQUEST");
   in = new BufferedReader(new InputStreamReader(URLsource.openStream(), "UTF-8"));
   jse = new JsonParser().parse(in);
   in.close();
   System.out.println(jse.toString());
   JsonArray jsa = jse.getAsJsonObject().getAsJsonArray("businesses");
   System.out.println(jsa.size());

   for (int i= 0; i<jsa.size(); i++ ) {
    System.out.println(jsa.get(i));
    System.out.println("===========================================================");
   }
  } catch (MalformedURLException e) {
   e.printStackTrace();
  } catch (UnsupportedEncodingException e) {
   e.printStackTrace();
  } catch (IOException e) {
   e.printStackTrace();
  }
link|improve this answer
1  
Hi, based on ur experience, is the GSON support JDK1.4 by any chance? I can't find the documentation re the JDK it supports. Thanks. – Nordin Jan 8 '10 at 3:30
feedback

I read a review of a few JSON libraries here: Review

link|improve this answer
This review compares: org.json,Jackson, XStream, JsonMarshaller, JSON.simple – eckes Aug 16 '11 at 14:35
feedback

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:

/**
 * Parse a generalized data structure from a JSON input stream.
 * <p>
 * All values are added using the <code>crtmbrcbk</code> callback.
 * <p>
 * <b><u>Reminder</b></u>
 * <p>
 * When using a reflected method, don't forget to configure your code obfuscator to retain it in unobfuscated form.
 *
 * @param psr       The parser to use.
 * @param tgt       Target object to which to add members; if this is null a new object is created using the callback.
 * @param maxlvl    Maximum level to recursively parse substructures, including arrays (objects at a deeper level are silently ignored).
 * @param crtmbrcbk A callback object invoked to create a member value.
 * @see             #createMemberCallback(Object,String)
 */
static public Object parseObject(JsonParser psr, Object tgt, int maxlvl, Callback crtmbrcbk) {
    return _parseObject(psr,tgt,maxlvl,crtmbrcbk,new Object[4],false);
    }

static private Object _parseObject(JsonParser psr, Object tgt, int maxlvl, Callback crtmbrcbk, Object[] crtprm, boolean arr) {
    int                                 evt;                                    // event code

    if(tgt==null) { tgt=crtmbrcbk.invoke(crtprm,psr,null,"",null); }

    while((evt=psr.next())!=JsonParser.EVT_INPUT_ENDED && evt!=JsonParser.EVT_OBJECT_ENDED && evt!=JsonParser.EVT_ARRAY_ENDED) {
        String  nam=psr.getMemberName();

        switch(evt) {
            case JsonParser.EVT_OBJECT_BEGIN : {
                if(nam.length()>0) {
                    if(maxlvl>1) { _parseObject(psr,crtmbrcbk.invoke(crtprm,psr,tgt,nam,null),(maxlvl-1),crtmbrcbk,crtprm,false); }
                    else         { psr.skipObject();                                                                              }
                    }
                else {
                    _parseObject(psr,tgt,maxlvl,crtmbrcbk,crtprm,false);
                    }
                } break;

            case JsonParser.EVT_ARRAY_BEGIN : {
                if(!arr) {
                    _parseObject(psr,tgt,maxlvl,crtmbrcbk,crtprm,true);            // first level of any array is added directly to the inherently list-supporting object
                    }
                else {
                    if(maxlvl>1) { _parseObject(psr,crtmbrcbk.invoke(crtprm,psr,tgt,nam,null),(maxlvl-1),crtmbrcbk,crtprm,true); }
                    else         { psr.skipArray();                                                                              }
                    }
                } break;

            case JsonParser.EVT_OBJECT_MEMBER : {
                crtmbrcbk.invoke(crtprm,psr,tgt,nam,psr.getMemberValue());
                } break;
            }
        }
    return tgt;
    }
link|improve this answer
crtmbrcbk.invoke(crtprm,psr,tgt,nam,psr.getMemberValue()); What are you, Polish? :) Joking, of course. – Esko Aug 25 '10 at 14:54
feedback

҉ 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

link|improve this answer
feedback

I recommend fastjson,just as its name,really fast

link|improve this answer
feedback

I've used Jettison and it works well.

link|improve this answer
feedback

I liked J2J - Json2Java from sourceforge.(http://sourceforge.net/projects/json2java/)

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:

MyClass myclass = (MyClass) new JsonReader(MyClass.class, jsonString).toObject();

link|improve this answer
feedback

give javajson a try. i wrote it and would definitely love some feedback: https://sourceforge.net/projects/javajson/

link|improve this answer
feedback

I was reading articles about the JAX-RS, and i realize that there isn't an onfficial lib for serialize and pojo to json object!

link|improve this answer
1  
JAX-RS does not handle object to data format conversion; and since the only official Java spec to deal with that is JAXB, JAXB is supported. If there was a JSR-specific binder to/from JSON it would probably be supported. However, most JAX-RS implementations use Jackson or JAXB+Jettison to provide data binding capabilities; most started with Jettison but are moving over to using Jackson. So these are de facto standard libraries. It is also trivial to use other data binding capable libraries to do the same (like gson); JAX-RS is a rather nice specification, flexible and extensible. – StaxMan Nov 8 '10 at 18:42
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

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:

http://sharegov.blogspot.com/2011/06/json-library.html

link|improve this answer
feedback

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.

link|improve this answer
You might want to list some of the nice features, since there are so many alternatives -- project page lists many, although most exist in other libs as well. – StaxMan Dec 9 '11 at 6:09
feedback

You may also look at json webserice , your api end point described in better way, also you can expose your api in soap,

link|improve this answer
feedback

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