Which is the best way to convert a JSON code as this:
{ 
    "data" : 
    { 
        "field1" : "value1", 
        "field2" : "value2"
    }
}
in a Java Map in which one the keys are (field1, field2) and the values for those fields are (value1, value2).
Any ideas? Should I use Json-lib for that?