JSON

From air
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

JSON (JavaScript Object Notation)

http://www.json.org/

API

Java

http://code.google.com/p/google-gson/

Javascript & Node.js

    var vcard = {
  		lastname: "DONSEZ",
  		firstname: "Didier",
  		birthday: new Date(),
  		email: "dd@moi.org",
                phones: ["+33 123456789", "+33 653456789"], 
	};
    
    var message = JSON.stringify(vcard);

    var vcard2 = JSON.parse(message);