Gson解析json数组

解析...android中json格式的数据只有两种,,一种是{}对应的,解析出来是对象;;;一种是[]对应的,这种是数组或者集合
                //1.集合或者数据在json原生解析,使用的JSONArray这个类...{}对应的在原声解析里面是JSONObject

                //2.使用gson解析数组格式的json字符串

     gson解析

                 Gson gson = new Gson();
                Type type = new TypeToken>() {}.getType();

                List jsonList = gson.fromJson(json,type);

                     listAll.addAll(listData.get(0).getData());

原生解析

          List list = new ArrayList<>();

             JSONArray jsonArray = new JSONArray(字符串);

                    //遍历这个json格式的数组
                    for (int i=0;i
                        String string = jsonArray.getString(i);
                        //添加到集合里面去
                        list.add(string);
                    }

            接着进行gson解析 list 为gson.fromjson(list,bean类.class)

你可能感兴趣的:(Gson解析json数组)