Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

9 Answers

up vote 196 down vote accepted

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?

Google Gson supports generics and nested beans. The [] in JSON represents an array and should map to a Java collection such as List or just a plain Java array. The {} in JSON represents an object and should map to a Java Map or just some Javabean class.

You have a JSON object with several properties of which the groups property represents an array of nested objects of the very same type. This can be parsed with Gson 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().

See also:

share|improve this answer
11  
+1 Great example. Simple and to the point! – Fedearne Nov 6 '09 at 19:29
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
2  
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
11  
+1 for the "package com.stackoverflow.q1688099;". For some reason it made me chuckle. – GargantuChet Sep 4 '12 at 2:18
show 8 more comments

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.

Note that Jackson fixes these issues, and is faster than GSON.

share|improve this answer
+1 I agree. I find jackson or simple json much easier to use then gson. – zengr Nov 6 '12 at 4:19

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
share|improve this answer

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

share|improve this answer

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.

share|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

Or with Jackson:

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

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.

share|improve this answer

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.

share|improve this answer
HashMap keyArrayList = new HashMap();
        Iterator itr = yourJson.keys();
        while (itr.hasNext())
        {
            String key =(String) itr.next();
            keyArrayList.put(key, yourJson.get(key).toString());
        }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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