JSON
How to install libplexus-classworlds-java-doc on Debian Unstable (Sid)
Install libplexus-classworlds-java-doc Installing libplexus-classworlds-java-doc package on Debian Unstable (Sid) is as easy as running the following command on terminal: sudo apt-get update sudo apt-get install…
How to install ruby-rbpdf-font on Debian Unstable (Sid)
Install ruby-rbpdf-font Installing ruby-rbpdf-font package on Debian Unstable (Sid) is as easy as running the following command on terminal: sudo apt-get update sudo apt-get install…
AJAX JSON Example
We can get JSON data by AJAX code. AJAX provides facility to get response asynchronously. It doesn’t reload the page and saves bandwidth. AJAX JSON…
Java JSON Example
The json.simple library allows us to read and write JSON data in Java. In other words, we can encode and decode JSON object in java…
PHP JSON Example
PHP allows us to encode and decode JSON by the help of json_encode() and json_decode functions. 1) PHP json_encode The json_encode() function returns the JSON…
JSON Comments
JSON doesn’t support comments. It is not a standard. But you can do some tricks such as adding extra attribute for comment in JSON object,…
JSON Array
JSON array represents ordered list of values. JSON array can store multiple values. It can store string, number, boolean or object in JSON array. In…
JSON Object
JSON object holds key/value pair. Each key is represented as a string in JSON and value can be of any type. The keys and values…
JSON Example
JSON example can be created by object and array. Each object can have different data such as text, number, boolean etc. Let’s see different JSON…
JSON vs XML
A list of differences between JSON and XML are given below. No. JSON XML 1) JSON stands for JavaScript Object Notation. XML stands for eXtensible…