How to parse nested json arrays in android using volleyball library

I have a json nested array in the lower format. I am using volley liabrary for JSON Parsing.

{
"City": [{
        "name": "Mumbai",
        "Mumbai": [{
            "area": "andheri",

            "diler": [{
                "DName": "yuvraj"
            }]
        }, {
            "area": "jogeshwari"
        }, {
            "area": "goregaon"
        }]
    },

    {

        "name": "Nashik",
        "Nashik": [{
            "area": "clg rd",
            "diler": [{
                "DName": "yuvraj"
            }]
        }, {
            "area": "GP RD",
            "diler": [{
                "DName": "Roshan"
            }]
        }, {
            "area": "CBS",
            "diler": [{
                "DName": "Deepak"
            }]
        }]

    }, {
        "name": "Bengaluru"
    }
]}

Below is the code I'm writing in android.

   jsonURL = "http://192.168.1.11/cycle_webservices/testing.json";

    buttonReq.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            JsonArrayRequest jsonArrayRequest = new JsonArrayRequest(
                    jsonURL,
                    new Response.Listener<JSONArray>() {
                        @Override
                        public void onResponse(JSONArray response) {
                            try {
                                for (int i = 0; i < response.length(); i++) {
                                    JSONObject jsonObject = response.getJSONObject(i);
                                    String name = jsonObject.getString("name");
                                    String area = jsonObject.getString("area");
                                    String diler = jsonObject.getString("diler");

                                    textView.append("\nCity: " + name + "\nArea: " + area + "\nDealer: " + diler +   "\n");
                                }
                            } catch (JSONException e) {
                                e.printStackTrace();
                                Toast.makeText(getApplicationContext(), "Error: " + e.getMessage(), Toast.LENGTH_LONG).show();
                            }
                        }
                    },
                    new Response.ErrorListener() {
                        @Override
                        public void onErrorResponse(VolleyError error) {
                            Log.e("VOLLEY", "ERROR");
                            Toast.makeText(getApplicationContext(), error.getMessage(), Toast.LENGTH_SHORT).show();
                        }
                    }
            );
            requestQueue.add(jsonArrayRequest);
        }
    });

But I get Errors when parsing it in Android. Error: JSONObject could not be converted to JSONArray

Can anyone provide some sample code to parse this json array.

Thanks at Advance

+4
source share
4 answers

Here is your solution to the problem, use the code below

 try {
        JSONObject jsonObject = new JSONObject("response");
        JSONArray jsonArray = jsonObject.getJSONArray("City");
        for (int i = 0; i < jsonArray.length(); i++) {
            JSONObject object = jsonArray.getJSONObject(i);
            String name = object.getString("name");
            if (object.length() != 0) {
                Iterator<String> key = object.keys();
                while (key.hasNext()) {
                    String cityname = key.next();
                    JSONArray ja = object.getJSONArray(cityname);
                    for (int j = 0; j < ja.length(); j++) {
                        JSONObject object1 = ja.getJSONObject(j);
                        String area = object1.getString("area");

                    }
                }
            }

        }
    } catch (Exception e) {
        e.printStackTrace();
    }

And try to make your JSON format the same.

+4
source

- json node - JsonObject, :

new Response.Listener<JSONObject>() {
    @Override
    public void onResponse(JSONObject response) { 
+3

JSONObject :

  JSONObject jsonObject = new JSONObject(response);

  JSONArray jsonArray = jsonObject.getJSONArray("City");

  for(int i = 0; i<jsonArray.length(); i++)
  {
      JSONObject jsonObject = jsonArray .getJSONObject(i);

      String name = jsonObject.getString("name");

      JSONArray city_array = jsonObject.getJSONArray(name);

      for(int j=0; j<city_array.length(); j++)
      {
          JSONObject obj = city_array.getJSONObject(j);

          String area = obj.getString("area");

          JSONArray diler_array = obj.getJSONArray("diler");

          JSONObject obj1 = diler_array.getJSONObject(0);

          String DName = obj1.getString("DName");
      }
  }

, .

+1

android volley

public List<HashMap<String,String>> returnJsonforPhp(){
  HashMap<String,String> map = new HashMap<String,String>();
  List<HashMap<String,String>> forjson= new ArrayList<HashMap<String,String>>();
  /*for(int i=0;i<dblist;i++) {
    map.put("name",dblist.getName());
    map.put("email",dblist.getEmail());
    map.put("mobno",dblist.getMobno());
    forjson.add(map);
  }*/

  map.put("name","ravi");
  map.put("email","ravi@gmail.com");
  map.put("mobno","9897939595");
  forjson.add(map);
  return forjson;
}

String OTP_Url = " https://www.yourdomain.com/rest/updateregistration/";

public String getJson() JsonProcessingException {

List > list = new ArrayList > ();        β†’ newlist = new ArrayList β†’ ();       newlist.add();

    HashMap<String,String> map = new HashMap<String, String>();
    map.put("name","knnkl");
    map.put("email","kjbjbk");
    map.put("password","njnjknk");

    list.add(map);
    newlist.add(list);
    String parsedJson = new ObjectMapper().writeValueAsString(newlist);//json conversion
    return parsedJson;
}

compile ([group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.4.1'], [group: 'com.fasterxml.jackson.core', name: 'jackson- annotations', version: '2.4.1'], [group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.4.1'])

0
source

Source: https://habr.com/ru/post/1662017/


All Articles