Dou you konw ‘JSON(JavaScript Object Notation)’?
*참고자료 :
위키백과 ― 우리 모두의 백과사전 / From Wikipedia, the free encyclopedia
JSON (JavaScript Object Notation) is a lightweight computer data interchange format. It is a text-based, human-readable format for representing objects and other data structures and is mainly used to transmit such structured data over a network connection (in a process called serialization).
JSON finds its main application in Ajax web application programming, as a simple alternative to using XML for asynchronously transmitting structured information between client and server.
JSON is a subset of the object literal notation of JavaScript and is commonly used with that language.
However the basic types and data structures of most other programming languages can also be represented in JSON, and the format can therefore be used to exchange structured data between programs written in different languages.
Code for parsing and generating JSON (the latter is also known as “stringifying”) is available for the following languages: ActionScript, C, C++, C#, ColdFusion, Common Lisp, E, Erlang, Java, JavaScript, Limbo, Lua, ML, Objective-C, Objective CAML, Perl, PHP, Python, Rebol, Ruby, Smalltalk and Tcl.
In December 2005, Yahoo! began offering some of its Web Services optionally in JSON.
Google started offering JSON feeds for its GData web protocol in December 2006.
JSON(제이슨, JavaScript Object Notation)은, 인터넷에서 자료를 주고받을 때 그 자료를 표현하는 방법이다.
자료의 종류에 큰 제한은 없으며, 특히 컴퓨터 프로그램의 변수값을 표현하는 데 적합하다.
그 형식은 자바스크립트의 구문 형식을 따르지만, 프로그래밍 언어나 플랫폼에 독립적이므로
C, C++, 자바, 자바스크립트, 펄, 파이썬 등 많은 언어에서 이용할 수 있다.RFC 4627로 규격화되었다.
문법
JSON 문법은 자바스크립트 표준인 ECMA-262 3판의 객체 문법에 바탕을 두며, 인코딩은 유니코드로 한다.
표현할 수 있는 자료형에는 수, 문자열, 참/거짓이 있고, 또 배열과 객체도 표현할 수 있다.
배열은 대괄호로 나타낸다. 배열의 각 요소는 기본자료형이거나 배열, 객체이다.
[10, {"v": 20}, [30, "마흔"]]
객체는 이름/값 쌍의 집합으로, 중괄호로 싼다.
이름은 문자열이기 때문에 반드시 따옴표를 하며, 값은 기본자료형이거나 배열, 객체이다.
각 쌍이 나오는 순서는 의미가 없다.
{"name2": 50, "name3": "값3", "name1": true}
JSON 메시지 단위는 배열이나 객체이다. 위의 두 예는 JSON 메시지가 될 수 있다.
예
다음은 한 사람에 관한 정보를 갖는 JSON 객체이다.
{ "이름": "홍길동",
"나이": 20,
"성별": "남",
"기혼": false,
"주소": null,
"특기": ["병법", "도술"],
"가족관계": {"#": 2, "아버지": "홍판서", "어머니": "춘섬"}
}
























