在Android中没有数组名称或节点的情况下进行JSON解析

时间:2018-08-21 07:47:01

标签: android json android-json

我有一个没有数组名称的JSOn数组,我很困惑如何解析它以及如何制作JSONObject或JSONArray。如果可能的话,请描述一下。

我的JSON数组列表为:

[{
name:"Product_fill",
image:"https://something.com/product1.jpg",
title:"Laptop 1"
},
{
name:"Product_fill2",
image:"https://something.com/product2.jpg",
title:"Laptop 2"
},

我的代码是:

    RequestQueue queue= Volley.newRequestQueue(this);
        String Url="http://msomething.com/list.php";
        StringRequest request=new StringRequest(Request.Method.GET, Url, new Response.Listener<String>() {
            @Override
            public void onResponse(String response) {
                //weatherData.setText("Response is :- ");
                parseData(response);
            }
        }, new Response.ErrorListener() {
            @Override
            public void onErrorResponse(VolleyError error) {
                textView.setText("Data Not Received");

            }
        });

        queue.add(request);
        super.onStart();


    }

    private void parseData(String response) {
        try {
            // Create JSOn Object
           JSONObject jsonObject=new JSONObject(response);
           JSONObject main=jsonObject.getJSONObject("array");
        JSONArray jsonArray=jsonObject.getJSONArray("0");

 for(int i=0;i<jsonArray.length();i++)
            {
JSONObject jsonObject1=jsonArray.getJSONObject(i);
textView.setText(jsonObject1.getString("name"));

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

2 个答案:

答案 0 :(得分:1)

您可以直接将响应字符串传递给JSONArray构造函数,然后使用循环解析该数组

JSONArray jsonArray = new JSONArray(response);

提示:由于Android内置的解析器不好,我将搜索如何使用其他json库,例如Gson或Jackson。

答案 1 :(得分:1)

尝试一下:

 try {
      JSONArray jsonArray = new JSONArray(response);
      for (int i = 0; i <jsonArray.length() ; i++) {
     JSONObject jsonObject = (JSONObject) jsonArray.get(i);  
     textView.setText(jsonObject.getString("name"));   
     }    
    } catch (JSONException e) {
      e.printStackTrace();
   }