vote up 5 vote down star

Hi all, 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 id's 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?

Thank you, Kind regards.

flag

3 Answers

vote up 5 vote down check

We have chosen Gson because it has the best support for Generics and it is very performant. Your example can be solved the following way:

package test;

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 fromJson = new Gson().fromJson(json, Data.class);

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

}

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 "title:" + title + ",id:" + id + ",children:" + children + ",groups:" + groups;
    }
}

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

link|flag
+1 Great example. Simple and to the point! – Fedearne Nov 6 at 19:29
Thanks BalusC, I used Gson and the concept is quite simple to grasp. – Binaryrespawn Nov 12 at 18:05
You're welcome. – BalusC Nov 12 at 18:11
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/…) 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 at 6:58
It is fast enough, sure if you see what it all can do with javabeans, nested javabeans and generics. The javabean getters/setters have other purposes in other layers and does not slowdown so I would just keep them there. – BalusC Nov 26 at 14:31
vote up 4 vote down

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

link|flag
vote up 4 vote down

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|flag
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 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 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 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 at 6:59

Your Answer

Get an OpenID
or

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