up vote 53 down vote favorite
58
share [g+] share [fb]

I want to be able to access properties from a JSON string within my Java action method. The string is available by simply saying myJsonString = object.getJson(). Below is an example of what the string can look like:

{'title': 'Computing and Information systems','id':1,'children': 'true','groups':
  [{'title': 'Level one CIS','id':2,'children': 'true','groups':[{'title': 'Intro To 
 Computing and Internet','id':3,'children': 'false','groups':[]}]}]}

In this string every JSON object contains an array of other JSON objects. The intention is to extract a list of IDs where any given object possessing a group property that contains other JSON objects. I looked at Google's Gson as a potential JSON plugin. Can anyone offer some form of guidance as to how I can generate Java from this JSON string?

link|improve this question

77% accept rate
feedback

8 Answers

up vote 108 down vote accepted

We have chosen Google Gson because it has the best support for Generics and nested beans.

Your example can be solved the following way:

package com.stackoverflow.q1688099;

import java.util.List;
import com.google.gson.Gson;

public class Test {

    public static void main(String... args) throws Exception {
        String json = 
            "{"
                + "'title': 'Computing and Information systems',"
                + "'id' : 1,"
                + "'children' : 'true',"
                + "'groups' : [{"
                    + "'title' : 'Level one CIS',"
                    + "'id' : 2,"
                    + "'children' : 'true',"
                    + "'groups' : [{"
                        + "'title' : 'Intro To Computing and Internet',"
                        + "'id' : 3,"
                        + "'children': 'false',"
                        + "'groups':[]"
                    + "}]" 
                + "}]"
            + "}";

        // Now do the magic.
        Data data = new Gson().fromJson(json, Data.class);

        // Show it.
        System.out.println(data);
    }

}

class Data {
    private String title;
    private Long id;
    private Boolean children;
    private List<Data> groups;

    public String getTitle() { return title; }
    public Long getId() { return id; }
    public Boolean getChildren() { return children; }
    public List<Data> getGroups() { return groups; }

    public void setTitle(String title) { this.title = title; }
    public void setId(Long id) { this.id = id; }
    public void setChildren(Boolean children) { this.children = children; }
    public void setGroups(List<Data> groups) { this.groups = groups; }

    public String toString() {
        return String.format("title:%s,id:%d,children:%s,groups:%s", title, id, children, groups);
    }
}

Fairly simple, isn't it? Just have a suitable Javabean and call Gson#fromJson().

link|improve this answer
4  
+1 Great example. Simple and to the point! – Fedearne Nov 6 '09 at 19:29
Thanks BalusC, I used Gson and the concept is quite simple to grasp. – Binaryrespawn Nov 12 '09 at 18:05
2  
Performant? Have you actually measured it? While GSON has reasonable feature set, I thought performance was sort of weak spot (as per [cowtowncoder.com/blog/archives/2009/09/entry_326.html]) As to example: I thought GSON did not really need setters, and was based on fields. So code could be simplified slightly. – StaxMan Nov 26 '09 at 6:58
1  
I use it in an android app. It is not the fastest possible solution but it is simple enough to program to justify the lack of performance for the user until now. Maybe in a later version of the app it will be removed for a faster solution. – Janusz Jun 22 '10 at 14:05
1  
Wrt speed, if it's fast enough, it's fast enough. I just commented on reference to expected good performance. Feature-set wise Jackson handles all the same nesting, layering, generics, so that's not where speed difference comes from. Having getters and setters does not impact performance in any measurable way (for packages I am aware of), so definitely can have them there. – StaxMan Jul 29 '10 at 6:19
show 3 more comments
feedback

Bewaaaaare of Gson! It's very cool, very great, but the second you want to do anything other than simple objects, you could easily need to start building your own serializers (which isn't that hard). Also, if you have an array of Objects, and you deserialize some json into that array of Objects, the true types are LOST! The full objects won't even be copied! Use XStream.. Which, if using the jsondriver and setting the proper settings, will encode ugly types into the actual json, so that you don't loose anything. A small price to pay (ugly json) for true serialization.

link|improve this answer
2  
Jackson (jackson.codehaus.org) also fixes these issues: it is possible to use polymorphic type information; generics actually fully work (instead of claimed to be working), and JSON isn't even ugly. And it is an order of magnitude faster than GSON (github.com/eishay/jvm-serializers/wiki) – StaxMan Feb 2 '11 at 17:55
feedback

The XStream library also supports JSON: http://xstream.codehaus.org/json-tutorial.html.

link|improve this answer
feedback

Oddly, the only decent JSON processor mentioned so far has been GSON.

Here are more good choices:

  • Jackson -- powerful data binding (JSON to/from POJOs), streaming (ultra fast), tree model (convenient for untyped access)
  • Flex-JSON -- highly configurable serialization
link|improve this answer
feedback

If you visit this page you will find several Java classes that can help with this. For example, the JSONObject and the JSONArray classes. They are designed to read in a JSON String and provide access to their properties via a get() method.

link|improve this answer
1  
I used this library in a project and it stinks. Example: JSONObject#getNames(JSONObject) returns null instead of an empty List or array if no names are available. – Malax Nov 6 '09 at 15:10
@Malax Thanks for the heads up. Hopefully one of the other suggestions would work better for the OP. – Vincent Ramdhanie Nov 6 '09 at 15:18
@Malax Since you have access to the code, couldn't you change JSONObject#getNames to return whatever you'd like in that case? But that JSON library could still stink for other reasons (never used them personally, but I know we're using them at work). – Jon Homan Nov 6 '09 at 17:00
Well, json.org default lib is rather rudimentary. I wouldn't choose it for any new project -- most alternatives from the page are much better. People are just using it because it has been around for years, and so others have used, and recommend it to new users... basic s/w development inertia. – StaxMan Nov 26 '09 at 6:59
feedback

Or with Jackson:

String json = "...
ObjectMapper m = new ObjectMapper();
Set<Product> products = m.readValue(json, new TypeReference<Set<Product>>() {});
link|improve this answer
feedback

If you use any kind of special maps with keys or values also of special maps, you will find it's not contemplated by the implementation of google.

link|improve this answer
feedback

If, by any change, you are in an application which already uses http://restfb.com/ then you can do:

import com.restfb.json.JsonObject;

...

JsonObject json = new JsonObject(jsonString);
json.get("title");

etc.

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.