What is the best way to convert a JSON code as this:
{ \"data\" : { \"field1\" : \"value1\", \"field2\" : \"value2\" } }
This way its works like a Map...
JSONObject fieldsJson = new JSONObject(json); String value = fieldsJson.getString(key); org.codehaus.jettison jettison 1.1