The JSON utility library for GWT that I blogged about last week is now up on google code.
To recap, the idea is that you can write code like this
JSONValue root = JSONParser.parse(json);
JSONWrapper obj = new JSONWrapper(root);
String result = obj.get("map").get(1).stringValue();when dealing with JSONValue objects.
As it’s only one class, you could just include it in your source tree as code instead of using the jar.
