尝试为:
JSonObject jSonObject = new JSonObject(jsonString);String str_type=jSONObject.getString("type");// using JSonArrayJSONArray featuresArr = jSONObject.getJSonArray("features"); for (int i=0; i<featuresArr.length; i++){ JSonObject anotherjsonObject = featuresArr.getJSonObject(i); //access the fields of that json object String str_type_one=anotherjsonObject.getString("type"); JSonArray featuresArr_properties = anotherjsonObject.getJSonArray("properties"); JSonObject propertiesjsonObject = featuresArr_properties.getJSonObject(0); String str_type=propertiesjsonObject.getString("type"); String str_type=propertiesjsonObject.getString("thumb"); String str_type=propertiesjsonObject.getString("name_pl"); String str_type=propertiesjsonObject.getString("name_en"); ////parse all items ........... }


