如何从Android中的URL解析多个JSON对象和数组?我在这个例子中使用我想要的例子,

如何从Android中的URL解析多个JSON对象和数组?我在这个例子中使用我想要的例子,,第1张

如何从Android中的URL解析多个JSON对象和数组?我在这个例子中使用我想要的例子,

响应

JSonObject JObject = new JSonObject(response);      String getting_data = JObject.getstring("getting data");    String Todays= JObject.getstring("Todays");    JsonArray results =JObject.getjsonarray("results");    for(int i = 0 ; i < results.length(); i++){     JsonObject resultsobject =results.getjsonobject(i);    JsonArray worldpopulation =resultsobject.getjsonarray("worldpopulation");         for(int j = 0 ; j < worldpopulation.length(); j++){     JsonObject worldpopulationobject =worldpopulation.getjsonobject(j);     JsonObject emptyobject =worldpopulationobject.getjsonobject("");         String rank=emptyobject .getstring("rank");         String population=emptyobject .getstring("population");         JsonArray flagarray =countrypulation.getjsonarray(flag);        for(int n = 0 ; n < flagarray.length(); n++){        JsonObject flagarrayobject =flag1array.getjsonobject(n);        String flag=flag1arrayobject .getstring("flag");         }     JsonObject populationobject =worldpopulationobject.getjsonobject("population");         JsonArray emptyarray =JObject.getjsonarray("");    for(int k = 0 ; k < emptyarray.length(); k++){        JsonObject emptyarrayobject =emptyarray.getjsonobject(k);        JsonObject countrypulation=emptyarrayobject.getjsonobject("countrypulation");         String rank1=countrypulation .getstring("rank");         String country=countrypulation .getstring("country");         String population1=countrypulation .getstring("population");        JsonArray flag1array =countrypulation.getjsonarray(flag);        for(int m = 0 ; m < flag1array.length(); m++){        JsonObject flag1arrayobject =flag1array.getjsonobject(m);        String flag1=flag1arrayobject .getstring("flag");         }    }    }    }


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5163919.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存