vote up 20 vote down star
10

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?

flag

I have added a hyperlink to my parser in my answer (softwaremonkey.org/Code/JsonParser). – Software Monkey Jan 16 '09 at 7:30
1  
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 at 2:21
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 at 18:46

11 Answers

vote up 8 vote down check

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

link|flag
vote up 0 vote down

I've used Jettison and it works well.

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 2 vote down

I've used JSONLib, FlexJSON and Gson all with great success. Each has it's 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 it's 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|flag
vote up 4 vote down

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|flag
+1. Gson is great. Here's an use example: stackoverflow.com/questions/1688099/… – BalusC Dec 3 at 16:42
vote up 2 vote down

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|flag
I like FlexJSON as well and even modified it to be compatible with Microsoft's JSON serializer really easily. – Chad Grant Apr 24 at 9:07
vote up 0 vote down

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):

/**
 * 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|flag
vote up 2 vote down

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

link|flag
vote up 4 vote down

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|flag
JAXB 2.0 also has support for JSON serialization using Jettison – Mark Renouf Jun 2 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 at 22:39
vote up 5 vote down

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).

link|flag
I second that, Jackson is a wonderful piece of work- much more efficient. – Robert Munteanu Jun 2 at 11:03
Just curious - why the downvote? Does someone have different (i.e. negative) feedback about Jackson? – Matt Solnit Jun 12 at 16:28
I tried Jackson when I was doing interoperability between .NET and Java and dates was a mess for me. I don't understand why it's done the way it's done in Jackson. The idea behind JSON is that I should just be able to shuffle data around, I don't have to care about date formats, timezones and all that crap. When I was sending data back and forth between js and c# I had zero problems whatsoever. – Anders Rune Jensen Jul 30 at 17:18
1  
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 at 20:40
1  
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/… and [cowtowncoder.com/blog/archives/… – StaxMan Oct 21 at 6:41

Your Answer

Get an OpenID
or

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