[Solved] how to parse the json below into string [duplicate]


You can parse json in Android easily

JSONArray jArray = new JSONArray (result);
for(int i=0; I<jArray.length; i++){
   JSONObject jObject = jArray.getJSONObject(i);

   String name = jObject.getString("name");
}  

1

solved how to parse the json below into string [duplicate]