답변:
Android에서 JSON 데이터로 작업 할 때 JSONArray
배열 대괄호로 시작하는 JSON을 구문 분석 하는 데 사용 합니다. JSON의 배열은 관련 항목 모음을 구성하는 데 사용됩니다 (JSON 개체 일 수 있음).
예를 들면 :[{"name":"item 1"},{"name": "item2} ]
반면에 JSONObject
중괄호로 시작하는 JSON을 다룰 때 사용 합니다. JSON 개체는 일반적으로 한 항목과 관련된 키 / 값 쌍을 포함하는 데 사용됩니다. 예를 들면 :{"name": "item1", "description":"a JSON object"}
물론 JSON 배열과 객체는 서로 중첩 될 수 있습니다. 이에 대한 일반적인 예는 쿼리와 일치하는 항목의 배열과 함께 일부 메타 데이터가 포함 된 JSON 개체를 반환하는 API입니다.
{"startIndex": 0, "data": [{"name":"item 1"},{"name": "item2"} ]}
차이점은 (Hash) Map vs List와 같습니다.
JSONObject :
{ID : 1}
{id: 1, name: 'B'}
입니다 {name: 'B', id: 1}
.JSONArray :
[1, 'value']
[1,'value']
다음과 같지 않습니다.['value',1]
예
JSON Object --> { "":""}
JSON Array --> [ , , , ]
{"employees":[
{"firstName":"John", "lastName":"Doe"},
{"firstName":"Anna", "lastName":"Smith"},
{"firstName":"Peter", "lastName":"Jones"}
]}
나는 항상 객체를 사용하며, 더 쉽게 확장 할 수 있지만 JSON 배열은 그렇지 않습니다. 예를 들어 원래는 일부 데이터가 json 배열로 있었는데, 그 위에 상태 헤더를 추가해야했는데, 객체에 데이터를 중첩하지 않는 한 약간 멈췄습니다. 유일한 단점은 생성 / 파싱의 복잡성이 약간 증가한다는 것입니다.
그래서 대신
[datum0, datum1, datumN]
당신은
{data: [datum0, datum1, datumN]}
나중에 더 추가 할 수 있습니다 ...
{status: "foo", data: [datum0, datum1, datumN]}
더 쉬운 방법으로 이해하기 위해 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.
JSON이 {}로 시작하면 Object JSON 객체 이고 []로 시작하면 Array JOSN Array입니다.
JSON 배열은 여러 개체로 구성 될 수 있으며이를 개체 배열이라고합니다.