用Java解析JSON数组

时间:2015-12-18 09:23:04

标签: java arrays json parsing

我正在将JSON文件解析为我的Java程序,我遇到了一个问题。 我得到一个JSON数组,例如:

[
  {
    "itemType": "magazineArticle",
    "creators": [
      {
        "firstName": "J. Antonio",
        "lastName": "Garcia-Macias",
        "creatorType": "author"
      },
      {
        "firstName": "Jorge",
        "lastName": "Alvarez-Lozano",
        "creatorType": "author"
      },
      {
        "firstName": "Paul",
        "lastName": "Estrada-Martinez",
        "creatorType": "author"
      },
      {
        "firstName": "Edgardo",
        "lastName": "Aviles-Lopez",
        "creatorType": "author"
      }
    ],
    "notes": [],
    "tags": [],
    "title": "Browsing the Internet of Things with Sentient Visors",
    "publicationTitle": "Computer",
    "volume": "44",
    "issue": "5",
    "ISSN": "0018-9162",
    "date": "2011",
    "pages": "46-52",
    "abstractNote": "Unlike the traditional Internet, the emerging Internet of Things constitutes a mix of virtual and physical entities. A proposed IoT browser enables the exploration of augmented spaces by identifying smart objects, discovering any services they might provide, and interacting with them.",
    "extra": "CICESE Research Center, Mexico; CICESE Research Center, Mexico; CICESE Research Center, Mexico; CICESE Research Center, Mexico",
    "libraryCatalog": "IEEE Computer Society"
  }
]

问题是我必须在每次解析时检查是否有一个名为“extra”的字段在数组中,因为每次解析时都不会包含它。 那么我该如何检查是否存在“额外”字段?

2 个答案:

答案 0 :(得分:1)

如果没有框架,您可以使用JSONObject中的JSONArrayorg.json.*。这是一个例子(未经测试)。它将允许您检查extra密钥是否存在

String jsonAsString = "/*Your json as a String*/";
JsonArray jsonArray = new JSONArray(jsonAsString);

for(int i=0; i<jsonArray.length(); i++) {
    JSONObject jsonObject = jsonArray.getJSONObject(i);
    //Get values from your jsonObject
    jsonObject.has("extra"); //Check if extra is present
}

答案 1 :(得分:1)

使用&#34;有&#34;像这样的JSONObject方法:

Array.getJSONObject(j).has("extra")