What is JSON?
|
3
|
|||||||||||||||||
|
|
|
Ref.: json.org An object is an unordered set of name/value pairs. An object begins with { (left brace) and ends with } (right brace). Each name is followed by : (colon) and the name/value pairs are separated by , (comma).
An array is an ordered collection of values. An array begins with [ (left bracket) and ends with ] (right bracket). Values are separated by , (comma).
A value can be a string in double quotes, or a number, or true or false or null, or an object or an array. These structures can be nested.
A string is a collection of zero or more Unicode characters, wrapped in double quotes, using backslash escapes. A character is represented as a single character string. A string is very much like a C or Java string.
A number is very much like a C or Java number, except that the octal and hexadecimal formats are not used.
Here is an example:
And in XML the same thing would have been:
Ref.: json.org Hope you now get an idea of what is JSON. |
||||
|
|
|
From Wikipedia: JSON (Javascript object notation)
|
||||
|
|
|
The in-depth version seems to be well covered, maybe you're looking for the short-and-simplified version? JSON is basically just a way to pass an array from one language to another. It's used a lot for Ajax (amongst other things) because with Ajax you typically have a server-side language (PHP etc.) passing a set of results to a client-side language (javascript). Your javascript calls your PHP page with some parameters; your PHP page builds an array and echos it encodes it to JSON format; your javascript catches the JSON and decodes it back to an array to process. There's more to it than that obviously (and for that reason I'm expecting a flurry of tear-streaked downvotes :) ), but that's all you need to get up and running with it. |
||
|
|
|
|
JSON is Javascript Object Notation. |
||
|
|
|
|
It is JavaScript Object Notation. You can use it to send data back and forward. It is often recommended since there is not so much overhead, like the one you get with XML. This is why it has become more popular than XML with Ajax. Take a look at this: http://en.wikipedia.org/wiki/JSON |
||
|
|
|
|
How does one make it all the way to stackoverflow.com without the ability to use google? I don't mean to be overly critical of the question or anything, but sometimes, people ask the darndest things. :) |
||||||||
|
|
|
In my opinion when one wants to access webservice of different service provider such as Twitter,facebook etc over HTTP. Then one must create a url and request for connection .When connection established a large amount of data comes from requesting site . Example <7b226665 65644974 656d7322 3a5b7b22 63617465 676f7279 223a7b22 6e616d65 223a2254 72616e73 706f7274 6174696f 6e222c22 68656164 65725f69 636f6e22 3a225c2f 686f6d65 5c2f6164 6d696e5c 2f707562 6c69635f 68746d6c 5c2f7072 6f647563 74696f6e 2e6d6973 73696f6e 7a65726f 2e6f7267> This DATA is too much difficult to understand and arbitary in nature so we have 2 option for the representation of arbitrary data structures either in JSON format or XML format .But disadvantage in XML , it is syntactically more complex and bigger in file size than JSON. So it is better to use JSON |
||||
|





