Is there a way in Java/J2ME to convert a string, such as:
{name:\"MyNode\", width:200, height:100}
to an internal Object representation of
JSON IO is by far the easiest way to convert a JSON string or JSON input stream to a Java Object
String to Java Object Object obj = JsonReader.jsonToJava("[\"Hello, World\"]");
Object obj = JsonReader.jsonToJava("[\"Hello, World\"]");
https://code.google.com/p/json-io/