在Java中读取JSON二维数组

前端之家收集整理的这篇文章主要介绍了在Java中读取JSON二维数组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
每个新闻条目都有三个内容标题,内容和日期.

数据库中检索条目,我想在我的应用程序中使用JSONObject和JSONArray读取它们.但是,我不知道如何使用这些类.

这是我的JSON字符串:

[
   {
      "news":{
         "title":"5th title","content":"5th content","date":"1363197493"
      }
   },{
      "news":{
         "title":"4th title","content":"4th content","date":"1363197454"
      }
   },{
      "news":{
         "title":"3rd title","content":"3rd content","date":"1363197443"
      }
   },{
      "news":{
         "title":"2nd title","content":"2nd content","date":"1363197409"
      }
   },{
      "news":{
         "title":"1st title","content":"1st content","date":"1363197399"
      }
   }
]

解决方法

您的JSON字符串是JSONObject的JSONArray,然后包含一个名为“news”的内部JSONObject.

试试这个来解析它:

JSONArray array = new JSONArray(jsonString);

for(int i = 0; i < array.length(); i++) {
    JSONObject obj = array.getJSONObject(i);
    JSONObject innerObject = obj.getJSONObject("news");

    String title = innerObject.getString("title");
    String content = innerObject.getString("content");
    String date = innerObject.getString("date");

    /* Use your title,content,and date variables here */
}
原文链接:https://www.f2er.com/java/121562.html

猜你在找的Java相关文章