I need to access as String all the single parameters contained in a complex Json.
for example String people=...; String idPeople=...; etc.
String people=...; String idPeople=...;
if we call the json you post myJsonString,
JSonObject obj = new JSonObject(myJsonString); JSonObject result = obj.getJSONObject("result"); JSonArray people = result.getJSONArray("people"); int numOfPeople = result.getInt("nPeople");