I'm requesting data from a server which returns data in the JSON format. Casting a HashMap into JSON when making the request wasn't hard at all but the other way seems to be a little tricky. The JSON response looks like this:

{ "header" : { "alerts" : [ { "AlertID" : "2",
            "TSExpires" : null,
            "Target" : "1",
            "Text" : "woot",
            "Type" : "1"
          },
          { "AlertID" : "3",
            "TSExpires" : null,
            "Target" : "1",
            "Text" : "woot",
            "Type" : "1"
          }
        ],
      "session" : "0bc8d0835f93ac3ebbf11560b2c5be9a"
    },
  "result" : "4be26bc400d3c"
}

What way would be easiest to access this data? I'm using the GSON module.

Cheers.

link|improve this question

76% accept rate
feedback

5 Answers

up vote 8 down vote accepted

Use this data structure:

public class Data {
    private Header header;
    private String result;
    // Add/generate getters and setters.

    public static class Header {
        private List<Alert> alerts;
        private String session;
        // Add/generate getters and setters.
    }

    public static class Alert {
        private Long AlertID;
        private Object TSExpires;
        private Integer Target;
        private String Text;
        private Integer Type;
        // Add/generate getters and setters. 
        // PS: I would lowercase the property names in both JSON as this class.
    }
}

And use this oneliner to convert it back:

Data data = new Gson().fromJson(json, Data.class);
link|improve this answer
Hi BalusC, This method seemed to work fine. ....until I tried using it in a Java Applet and got hit with a reflectpermission. Damn. :( I've posted a question here. Thanks. – Mridang Agarwalla May 7 '10 at 11:18
How do you access the alerts List once you've executed the fromJson line? What do the get functions look like? – GobiasKoffi Jul 14 '10 at 17:38
@rohanbk: just conforming the javabean specs. getPropertyName() and so on. Any IDE can autogenerate them for you. – BalusC Jul 14 '10 at 17:40
feedback

I know this is a fairly old question, but I was searching for a solution to generically deserialize nested JSON to a Map<String, Object>, and found nothing.

The way my yaml deserializer works, it defaults JSON objects to Map<String, Object> when you don't specify a type, but gson doesn't seem to do this. Luckily you can accomplish it with a custom deserializer.

I used the following deserializer to naturally deserialize anything, defaulting JsonObjects to Map<String, Object> and JsonArrays to Object[]s, where all the children are similarly deserialized.

private static class NaturalDeserializer implements JsonDeserializer<Object> {
  public Object deserialize(JsonElement json, Type typeOfT, 
      JsonDeserializationContext context) {
    if(json.isJsonNull()) return null;
    else if(json.isJsonPrimitive()) return handlePrimitive(json.getAsJsonPrimitive());
    else if(json.isJsonArray()) return handleArray(json.getAsJsonArray(), context);
    else return handleObject(json.getAsJsonObject(), context);
  }
  private Object handlePrimitive(JsonPrimitive json) {
    if(json.isBoolean())
      return json.getAsBoolean();
    else if(json.isString())
      return json.getAsString();
    else {
      BigDecimal bigDec = json.getAsBigDecimal();
      // Find out if it is an int type
      try {
        bigDec.toBigIntegerExact();
        try { return bigDec.intValueExact(); }
        catch(ArithmeticException e) {}
        return bigDec.longValue();
      } catch(ArithmeticException e) {}
      // Just return it as a double
      return bigDec.doubleValue();
    }
  }
  private Object handleArray(JsonArray json, JsonDeserializationContext context) {
    Object[] array = new Object[json.size()];
    for(int i = 0; i < array.length; i++)
      array[i] = context.deserialize(json.get(i), Object.class);
    return array;
  }
  private Object handleObject(JsonObject json, JsonDeserializationContext context) {
    Map<String, Object> map = new HashMap<String, Object>();
    for(Map.Entry<String, JsonElement> entry : json.entrySet())
      map.put(entry.getKey(), context.deserialize(entry.getValue(), Object.class));
    return map;
  }
}

The messiness inside the handlePrimitive method is for making sure you only ever get a Double or an Integer or a Long, and probably could be better, or at least simplified if you're okay with getting BigDecimals, which I believe is the default.

You can register this adapter like:

GsonBuilder gsonBuilder = new GsonBuilder();
gsonBuilder.registerTypeAdapter(Object.class, new NaturalDeserializer());
Gson gson = gsonBuilder.create();

And then call it like:

Object natural = gson.fromJson(source, Object.class);

I'm not sure why this is not the default behavior in gson, since it is in most other semi-structured serialization libraries...

link|improve this answer
Thanks, that was really helpful. – Matt Zukowski May 20 '11 at 1:01
... although I'm not quite sure what to do now with the Objects I get back. Can't seem to cast them as String even though I know they're strings – Matt Zukowski May 20 '11 at 1:17
Aha! The trick was the call the deserializer recursively instead of the context.deserialize() call. – Matt Zukowski May 20 '11 at 1:34
Thanks for that. It's a little strange that it does not do this my by itself. – Megasaur Jun 29 '11 at 6:36
1  
Would you have some code Matt? I'm trying to make the changes on the deserializer but I can't really see your point – Romain Piel Jul 18 '11 at 16:30
show 1 more comment
feedback

JSONObject typically uses HashMap internally to store the data. So, you can use it as Map in your code.

Example,

JSONObject obj = JSONObject.fromObject(strRepresentation);
Iterator i = obj.entrySet().iterator();
while (i.hasNext()) {
   Map.Entry e = (Map.Entry)i.next();
   System.out.println("Key: " + e.getKey());
   System.out.println("Value: " + e.getValue());
}
link|improve this answer
1  
This is from json-lib, not gson! – Ammar Dec 14 '11 at 14:43
feedback

@Kevin Dolan I think your solution is not working on gson2.1.Although its registered to typeadapters builtin ObjectTypeAdapter is working instead. Am i missing something ?

link|improve this answer
feedback

Here is what I have been using:

public static HashMap<String, Object> parse(String json) {
    JsonObject object = (JsonObject) parser.parse(json);
    Set<Map.Entry<String, JsonElement>> set = object.entrySet();
    Iterator<Map.Entry<String, JsonElement>> iterator = set.iterator();
    HashMap<String, Object> map = new HashMap<String, Object>();
    while (iterator.hasNext()) {
        Map.Entry<String, JsonElement> entry = iterator.next();
        String key = entry.getKey();
        JsonElement value = entry.getValue();
        if (!value.isJsonPrimitive()) {
            map.put(key, parse(value.toString()));
        } else {
            map.put(key, value.getAsString());
        }
    }
    return map;
}
link|improve this answer
what's parser.parse?! – Ammar Dec 14 '11 at 14:41
that's probably "new com.google.gson.JsonParser().parse()" – chhh Dec 24 '11 at 14:40
feedback

Your Answer

 
or
required, but never shown

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