在android中解析嵌套的json对象

时间:2016-06-28 11:08:19

标签: android json parsing

当以嵌套的Json对象形式返回Json响应数据时,如何解析Json数据。

我查看了this post,其中显示了如何只获取一个数据。因为我想要整个数据集对我来说没用。

它说:

JSONObject jMainObject = null;
    try {
        jMainObject = new JSONObject(jsonString);
        JSONObject apiGroupsObject = jMainObject.getJSONObject("apiGroups");
        JSONObject affiliateObject = apiGroupsObject.getJSONObject("affiliate"); 
        JSONObject apiListingsObject = affiliateObject.getJSONObject("apiListings");
        JSONObject bags_wallets_beltsObject = apiListingsObject.getJSONObject("bags_wallets_belts");
        JSONObject availableVariantsObject = bags_wallets_beltsObject.getJSONObject("availableVariants");
        JSONObject versionObject = availableVariantsObject.getJSONObject("v0.1.0");
        System.out.println(versionObject);
    } catch (JSONException e) {
        e.printStackTrace();
    }

Json返回了我要解析的数据from here

任何人都可以帮我解决我如何解析这类数据的问题,因为我是新手,所以我不知道如何解析嵌套的Json对象数据。也许我可以用Gson吗?但我也不知道如何使用它。

4 个答案:

答案 0 :(得分:0)

序列化/反序列化的第一条规则 - 不要自己动手。 请改用 compile' com.google.code.gson:gson:2.6.2' 。 它是基于谷歌注释的反序列化器。 Here is some tutorial on how to use it.

答案 1 :(得分:0)

Try your parsing using volley library .It's a big data so always use optJson object for avoiding null.This is small piece of code .Hope it will help you.
  String title = response.getString("title");
String   description = response.getString("description");


JSONObject objApiGrp = response.optJSONObject("apiGroups");
if(objApiGrp != null && objApiGrp.size()>0)
{
    JSONObject objaffiliate = objApiGrp.optJSONObject("affiliate");

    for(int i=0 ; i<objaffiliate.size() ; i++)
{


JSONObject objapiListings = objaffiliate.optJSONObject("apiListings");
for(int i=0 ; i<objapiListings.size() ; i++)
{

//      parse all objects


}


}

答案 2 :(得分:0)

您需要创建所有单独的对象以获取整个关键数据值。 像这样:

JSONObject jMainObject = null;
try {
    jMainObject = new JSONObject(jsonString);
    JSONObject apiGroupsObject = jMainObject.getJSONObject("apiGroups");
    JSONObject affiliateObject = apiGroupsObject.getJSONObject("affiliate"); 
    JSONObject apiListingsObject = affiliateObject.getJSONObject("apiListings");
    JSONObject bags_wallets_beltsObject = apiListingsObject.getJSONObject("bags_wallets_belts");
    JSONObject availableVariantsObject = bags_wallets_beltsObject.getJSONObject("availableVariants");
    JSONObject versionObject = availableVariantsObject.getJSONObject("v0.1.0");
    System.out.println(versionObject);

    JSONObject fragrances = apiListingsObject.getJSONObject("fragrances");
    availableVariantsObject = bags_wallets_beltsObject.getJSONObject("availableVariants");
    versionObject = availableVariantsObject.getJSONObject("v0.1.0");
    System.out.println(versionObject);

    JSONObject tv_video_accessories = apiListingsObject.getJSONObject("tv_video_accessories");
    availableVariantsObject = bags_wallets_beltsObject.getJSONObject("availableVariants");
    versionObject = availableVariantsObject.getJSONObject("v0.1.0");
    System.out.println(versionObject);

    JSONObject camera_accessories = apiListingsObject.getJSONObject("camera_accessories");
    availableVariantsObject = bags_wallets_beltsObject.getJSONObject("availableVariants");
    versionObject = availableVariantsObject.getJSONObject("v0.1.0");
    System.out.println(versionObject);

    JSONObject sports_fitness = apiListingsObject.getJSONObject("sports_fitness");
    availableVariantsObject = bags_wallets_beltsObject.getJSONObject("availableVariants");
    versionObject = availableVariantsObject.getJSONObject("v0.1.0");
    System.out.println(versionObject);

    // Make and use object like this for all key Values.

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

所有键都不同,所以不能使用循环。否则代码将使用循环进行优化。

答案 3 :(得分:0)

do it like this, hope it will help you, tested    

JSONObject objresponse = new JSONObject(response);
                    JSONObject objapiGroups = objresponse.getJSONObject("apiGroups");
                    JSONObject objaffiliate = objapiGroups.getJSONObject("affiliate");
                    JSONObject objapiListings = objaffiliate.getJSONObject("apiListings");

                    Iterator iterator = objapiListings.keys();
                    int i=0;
                    Catagory=new String[objapiListings.length()];
                    while(iterator.hasNext()){
                        String key = (String)iterator.next();
                        JSONObject issue = objapiListings.getJSONObject(key);

                        //  get id from  issue
                        Catagory[i] = issue.optString("apiName");
                        i++;
                    }
                    JSONObject[] objcat = new JSONObject[Catagory.length];
                    CatagoryName=new String[Catagory.length];
                    Url=new String[Catagory.length];
                    for(int j=0;j<Catagory.length;j++)
                    {
                        objcat[j]=objapiListings.getJSONObject(Catagory[j]);

                        CatagoryName[j]=objcat[j].getJSONObject("availableVariants").getJSONObject("v1.1.0").getString("resourceName");
                        Url[j]=objcat[j].getJSONObject("availableVariants").getJSONObject("v1.1.0").getString("get");

                    }