119

在浏览了谷歌之后,我发现这个链接描述了差异,但从语法的角度来看。

在编程场景中,什么时候会优先选择另一个?

4

8 回答 8

209

当您在 Android 中处理 JSON 数据时,您将使用JSONArray解析以数组括号开头的 JSON。JSON 中的数组用于组织相关项目的集合(可以是 JSON 对象)。
例如:[{"name":"item 1"},{"name": "item2} ]

另一方面,您将JSONObject在处理以花括号开头的 JSON 时使用。JSON 对象通常用于包含与一项相关的键/值对。例如:{"name": "item1", "description":"a JSON object"}

当然,JSON 数组和对象可以相互嵌套。一个常见的例子是一个 API,它返回一个 JSON 对象,其中包含一些元数据以及与您的查询匹配的项目数组:

{"startIndex": 0, "data": [{"name":"item 1"},{"name": "item2"} ]}
于 2012-09-05T21:18:43.263 回答
120

区别与(哈希)映射与列表相同。

JSON对象:

  • 包含命名值(key->value 对、元组或任何你想调用它们的东西)
    • {ID : 1}
  • 元素的顺序并不重要
    • 的 JSONObject{id: 1, name: 'B'}等于{name: 'B', id: 1}

JSON数组:

  • 仅包含系列值
    • [1, 'value']
  • 值的顺序很重要
    • 数组[1,'value']不一样['value',1]

例子

JSON Object --> { "":""}

JSON Array --> [ , , , ]

{"employees":[
    {"firstName":"John", "lastName":"Doe"},
    {"firstName":"Anna", "lastName":"Smith"},
    {"firstName":"Peter", "lastName":"Jones"}
]}
于 2013-04-22T11:14:05.927 回答
25

最好的编程理解。

当语法是{}那么这是JsonObject

当语法是[]那么这是JsonArray

AJSONObject是一个类似 JSON 的对象,可以表示为JSONArray. JSONArray可以包含一个(或多个)JSONObject

希望这对你有帮助!

于 2016-07-25T06:29:29.340 回答
7

我总是使用对象,它更容易扩展,JSON 数组不是。例如,您最初有一些数据作为 json 数组,然后您需要在其上添加状态标头,除非您将数据嵌套在对象中,否则您会有点卡住。唯一的缺点是创建/解析的复杂性略有增加。

所以而不是

[datum0, datum1, datumN]

你会有

{data: [datum0, datum1, datumN]}

然后稍后您可以添加更多...

{status: "foo", data: [datum0, datum1, datumN]}
于 2012-09-05T21:18:50.880 回答
7

为了更容易理解它,以下是 JSON 对象和 JSON 数组之间的差异:

链接到表格差异: https ://i.stack.imgur.com/GIqI9.png

JSON 数组

1. Arrays in JSON are used to organize a collection of related items
   (Which could be JSON objects)
2.  Array values must be of type string, number, object, array, boolean or null
3.  Syntax: 
           [ "Ford", "BMW", "Fiat" ]
4.  JSON arrays are surrounded by square brackets []. 
    **Tip to remember**  :  Here, order of element is important. That means you have 
    to go straight like the shape of the bracket i.e. straight lines. 
   (Note :It is just my logic to remember the shape of both.) 
5.  Order of elements is important. Example:  ["Ford","BMW","Fiat"] is not 
    equal to ["Fiat","BMW","Ford"]
6.  JSON can store nested Arrays that are passed as a value.

JSON 对象

1.  JSON objects are written in key/value pairs.
2.  Keys must be strings, and values must be a valid JSON data type (string, number, 
    object, array, boolean or null).Keys and values are separated by a colon.
    Each key/value pair is separated by a comma.
3.  Syntax:
         { "name":"Somya", "age":25, "car":null }
4.  JSON objects are surrounded by curly braces {} 
    Tip to remember : Here, order of element is not important. That means you can go 
    the way you like. Therefore the shape of the braces i.e. wavy. 
    (Note : It is just my logic to remember the shape of both.)
5.  Order of elements is not important. 
    Example:  { rollno: 1, firstname: 'Somya'} 
                   is equal to 
             { firstname: 'Somya', rollno: 1}
6.  JSON can store nested objects in JSON format in addition to nested arrays.
于 2018-08-29T07:35:52.403 回答
4

两者的使用取决于数据的结构。

简单地说,如果您计划优先考虑唯一标识符(例如主键),则可以使用嵌套对象方法。

例如:

  {
     "Employees" : {
           "001" : {
               "Name" : "Alan",
               "Children" : ["Walker", "Dua", "Lipa"]
                },
           "002" : {
               "Name" : "Ezio",
               "Children" : ["Kenvey", "Connor", "Edward"]
                }
      }

或者,如果您打算存储一组值而无需唯一标识,请使用数组优先方法。

例如:

     {
        "Employees":[
               {
                   "Name" : "Alan",
                   "Children" : ["Walker", "Dua", "Lipa"]
               },
               {
                   "Name" : "Ezio",
                   "Children" : ["Kenvey", "Connor", "Edward"]
               }
          ]
       }
   

尽管您可以将第二种方法与标识符一起使用,但在某些情况下查询和理解可能更难或太复杂。此外,根据数据库,可能必须采用合适的方法。例如:MongoDB / Firebase

于 2020-09-26T16:15:22.173 回答
1

当 JSON 以它开头时,{}它是一个 Object JSON object,当它以 [] 开头时,它是一个 Array JSON Array

JSON 数组可以包含许多对象,称为对象数组。

于 2020-06-08T05:24:22.020 回答
0

我知道,以前的所有答案都对您的问题很有见地。在找到这个 SO 线程前一分钟,我也和你一样困惑。在阅读了一些答案之后,我得到了以下信息:JSONObject 是一个类似 JSON 的对象,可以表示为数组 JSONArray 中的一个元素。换句话说,一个 JSONArray 可以包含一个(或多个)JSONObject。

于 2018-08-09T13:27:44.513 回答