SlideShare a Scribd company logo
1 of 19
Team Members 
1. Anum Hanif 
2. Farina Khan 
3. Hafiza Areeba 
4. Haya Samar 
5. Maheen Ashraf 
6. Ramsha Arif 
7. Sadaf Allahdin 
8. Sobia Hashmi 
9. Sundus Munawar 
10. Zara Tariq
What is JSON? 
• Lightweight data-interchange format 
• Subset of JavaScript 
• Easy for humans to read and write 
• Easy for machines to parse and generate 
• Language independent 
JSON
Properties of JSON 
• Human and machine readable format. 
• Strict syntax and parsing requirements. 
• Represents the most general computer science 
data structures like records, lists and trees. 
JSON
Data Interchange 
• JSON is a simple, common representation of 
data. 
• Communication between servers and browser 
clients. 
JSON
Where to use JSON? 
• It is useful when writing any kind of JavaScript-based 
application. 
• I t is used primarily to transmit data between a 
server and web application. 
• JSON with PHP 
• JSON with Perl 
• JSON with Python 
• JSON with JavaScript 
JSON
Where to use JSON? 
• JSON with PHP 
• json_encode 
• json_decode 
• json_last_error 
• JSON with Perl 
• to_json 
• from_json 
• convert_blessed 
JSON
Where to use JSON? 
• JSON with Python 
JSON 
• encode 
• decode 
• JSON with Javascript 
• JSON.stringify 
• JSON.parse
Why JSON ? 
• JSON is syntax for storing and exchanging text 
information. 
• The JSON text format is syntactically identical 
to the code for creating JavaScript objects. 
• Because of this similarity, instead of using a 
parser, a JS program can use the built-in 
functions and execute JSON data to produce 
native JavaScript objects. 
JSON
Why JSON ? 
• 3 Reasons why you should use JSON 
• Clean data 
• Efficiency 
• Scalability 
• As compared to XML, JSON is 
JSON 
• smaller 
• faster and 
• easier to parse
How to use it..? 
• JSON syntax is a subset of JavaScript syntax 
• Json Syntax Rules 
• Data is in name/value pairs 
• Data is separated by commas 
• Curly braces hold objects 
• Square brackets hold arrays 
• JSON Name/Value Pairs 
• JSON data is written as name/value pairs 
• Example 
• "firstName" : "John" 
JSON
How to use it..? 
• JSON values can be 
 A number (integer or floating point) 
 A string (in double quotes) 
 A Boolean (true or false) 
 An array (in square brackets) 
 An object (in curly brackets) 
 null 
• JSON Objects 
 JSON objects are written inside curly brackets 
 Objects can contain multiple name/values pairs 
• Example 
{ "firstName":"John" , "lastName":"Doe" } 
JSON
How to use it..? 
Simple Example 
JSON
How to use it..? 
Result 
JSON
JSON vs. XML 
JSON 
JSON 
• JSON is a text-based 
format. 
• JSON data types: string, 
number, array, Boolean. 
• JSON does not contain 
start and end tags. 
• JSON include arrays. 
• JSON does not have 
support for Namespaces. 
XML 
• XML is a Markup 
Language. 
• XML data are all string. 
• Xml contain start and end 
tags. 
• XML doesn't include 
arrays. 
• XML supports 
Namespaces.
JSON vs. XML 
<?xml version=“1.0” encoding=“utf- 
8”?> 
<students> 
<student> 
<name>Ali</name> 
<age>20</age> 
<gender>male</gender> 
</student> 
<student> 
<name>Bilal</name> 
<age>21</age> 
<gender>male</gender> 
</student> 
</students> 
“students”= [ 
{“name”: “Ali”, “age”: “20”, 
“gender”: “Male”}, 
{“name”: “Bilal”, “age”: “21”, 
“gender”: “Male”} 
] 
JSON 
JSON XML
Examples Of JSON 
JSON
Examples Of JSON 
• Android weather app: 
JSON, HTTP, Async Task 
and Openweathermap 
HTTP Connection 
OpenWeatherMap API 
Async Task 
JSON Object and Parser 
Display Data 
JSON
JSON

More Related Content

What's hot (20)

XML Schema
XML SchemaXML Schema
XML Schema
 
Ajax ppt
Ajax pptAjax ppt
Ajax ppt
 
Xml namespace
Xml namespaceXml namespace
Xml namespace
 
JavaScript Programming
JavaScript ProgrammingJavaScript Programming
JavaScript Programming
 
Xml parsers
Xml parsersXml parsers
Xml parsers
 
jstl ( jsp standard tag library )
jstl ( jsp standard tag library )jstl ( jsp standard tag library )
jstl ( jsp standard tag library )
 
Introduction to ajax
Introduction  to  ajaxIntroduction  to  ajax
Introduction to ajax
 
Data types in php
Data types in phpData types in php
Data types in php
 
Html ppt
Html pptHtml ppt
Html ppt
 
Xml 215-presentation
Xml 215-presentationXml 215-presentation
Xml 215-presentation
 
R strings
R   stringsR   strings
R strings
 
Front-end technologies for Wonderful User Experience through Websites
Front-end technologies for Wonderful User Experience through WebsitesFront-end technologies for Wonderful User Experience through Websites
Front-end technologies for Wonderful User Experience through Websites
 
XSLT
XSLTXSLT
XSLT
 
Javascript essentials
Javascript essentialsJavascript essentials
Javascript essentials
 
Statements and Conditions in PHP
Statements and Conditions in PHPStatements and Conditions in PHP
Statements and Conditions in PHP
 
Xml schema
Xml schemaXml schema
Xml schema
 
Introduction to XML
Introduction to XMLIntroduction to XML
Introduction to XML
 
PHP - Introduction to File Handling with PHP
PHP -  Introduction to  File Handling with PHPPHP -  Introduction to  File Handling with PHP
PHP - Introduction to File Handling with PHP
 
Introduction to JSON & AJAX
Introduction to JSON & AJAXIntroduction to JSON & AJAX
Introduction to JSON & AJAX
 
Introduction to JSON
Introduction to JSONIntroduction to JSON
Introduction to JSON
 

Similar to JSON (20)

JSON - (English)
JSON - (English)JSON - (English)
JSON - (English)
 
Unit-2.pptx
Unit-2.pptxUnit-2.pptx
Unit-2.pptx
 
Json - ideal for data interchange
Json - ideal for data interchangeJson - ideal for data interchange
Json - ideal for data interchange
 
JSON.pptx
JSON.pptxJSON.pptx
JSON.pptx
 
All about XML, JSON and related topics..
All about XML, JSON and related topics..All about XML, JSON and related topics..
All about XML, JSON and related topics..
 
Data exchange over internet (XML vs JSON)
Data exchange over internet (XML vs JSON)Data exchange over internet (XML vs JSON)
Data exchange over internet (XML vs JSON)
 
Json training
Json trainingJson training
Json training
 
What is JSON? Why use JSON? JSON Types? JSON Helpful Tools?
What is JSON? Why use JSON? JSON Types? JSON Helpful Tools?What is JSON? Why use JSON? JSON Types? JSON Helpful Tools?
What is JSON? Why use JSON? JSON Types? JSON Helpful Tools?
 
Json
JsonJson
Json
 
JSON Learning
JSON LearningJSON Learning
JSON Learning
 
JSON_FIles-Py (2).pptx
JSON_FIles-Py (2).pptxJSON_FIles-Py (2).pptx
JSON_FIles-Py (2).pptx
 
Json processing
Json processingJson processing
Json processing
 
Java Script Object Notation (JSON)
Java Script Object Notation (JSON)Java Script Object Notation (JSON)
Java Script Object Notation (JSON)
 
JSON PRETTIFY.pdf
JSON PRETTIFY.pdfJSON PRETTIFY.pdf
JSON PRETTIFY.pdf
 
JSON Support in Salesforce - winter 12
JSON Support in Salesforce - winter 12JSON Support in Salesforce - winter 12
JSON Support in Salesforce - winter 12
 
Json tutorial, a beguiner guide
Json tutorial, a beguiner guideJson tutorial, a beguiner guide
Json tutorial, a beguiner guide
 
Json
JsonJson
Json
 
java script json
java script jsonjava script json
java script json
 
Json
JsonJson
Json
 
Screaming fast json parsing on Android
Screaming fast json parsing on AndroidScreaming fast json parsing on Android
Screaming fast json parsing on Android
 

More from Zara Tariq

Implementation and comparison of Low pass filters in Frequency domain
Implementation and comparison of Low pass filters in Frequency domainImplementation and comparison of Low pass filters in Frequency domain
Implementation and comparison of Low pass filters in Frequency domainZara Tariq
 
Query optimization techniques in Apache Hive
Query optimization techniques in Apache Hive Query optimization techniques in Apache Hive
Query optimization techniques in Apache Hive Zara Tariq
 
Design and evaluation of an io controller for data protection
Design and evaluation of an io controller for data protectionDesign and evaluation of an io controller for data protection
Design and evaluation of an io controller for data protectionZara Tariq
 
Stochastic kronecker graphs
Stochastic kronecker graphsStochastic kronecker graphs
Stochastic kronecker graphsZara Tariq
 
Pull Vs. Push Production
Pull Vs. Push ProductionPull Vs. Push Production
Pull Vs. Push ProductionZara Tariq
 
Crime Record Management System (CRMS)
Crime Record Management System (CRMS)Crime Record Management System (CRMS)
Crime Record Management System (CRMS)Zara Tariq
 
Crime Record Management System (CRMS)
Crime Record Management System (CRMS)Crime Record Management System (CRMS)
Crime Record Management System (CRMS)Zara Tariq
 
Toys Vending Machine
Toys Vending MachineToys Vending Machine
Toys Vending MachineZara Tariq
 
An Integrated Cloud Computing Architectural Stack
An Integrated Cloud Computing Architectural Stack An Integrated Cloud Computing Architectural Stack
An Integrated Cloud Computing Architectural Stack Zara Tariq
 
Face Detection and Recognition System
Face Detection and Recognition SystemFace Detection and Recognition System
Face Detection and Recognition SystemZara Tariq
 

More from Zara Tariq (12)

Implementation and comparison of Low pass filters in Frequency domain
Implementation and comparison of Low pass filters in Frequency domainImplementation and comparison of Low pass filters in Frequency domain
Implementation and comparison of Low pass filters in Frequency domain
 
Query optimization techniques in Apache Hive
Query optimization techniques in Apache Hive Query optimization techniques in Apache Hive
Query optimization techniques in Apache Hive
 
Design and evaluation of an io controller for data protection
Design and evaluation of an io controller for data protectionDesign and evaluation of an io controller for data protection
Design and evaluation of an io controller for data protection
 
Stochastic kronecker graphs
Stochastic kronecker graphsStochastic kronecker graphs
Stochastic kronecker graphs
 
Pull Vs. Push Production
Pull Vs. Push ProductionPull Vs. Push Production
Pull Vs. Push Production
 
Crime Record Management System (CRMS)
Crime Record Management System (CRMS)Crime Record Management System (CRMS)
Crime Record Management System (CRMS)
 
Crime Record Management System (CRMS)
Crime Record Management System (CRMS)Crime Record Management System (CRMS)
Crime Record Management System (CRMS)
 
Interrupts
Interrupts Interrupts
Interrupts
 
INTERRUPTS
INTERRUPTS INTERRUPTS
INTERRUPTS
 
Toys Vending Machine
Toys Vending MachineToys Vending Machine
Toys Vending Machine
 
An Integrated Cloud Computing Architectural Stack
An Integrated Cloud Computing Architectural Stack An Integrated Cloud Computing Architectural Stack
An Integrated Cloud Computing Architectural Stack
 
Face Detection and Recognition System
Face Detection and Recognition SystemFace Detection and Recognition System
Face Detection and Recognition System
 

Recently uploaded

Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...home
 
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...Suhani Kapoor
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxmirandajeremy200221
 
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130Suhani Kapoor
 
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceCALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceanilsa9823
 
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...Suhani Kapoor
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...Call Girls in Nagpur High Profile
 
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 night
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 nightCheap Rate Call girls Kalkaji 9205541914 shot 1500 night
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 nightDelhi Call girls
 
Kurla Call Girls Pooja Nehwal📞 9892124323 ✅ Vashi Call Service Available Nea...
Kurla Call Girls Pooja Nehwal📞 9892124323 ✅  Vashi Call Service Available Nea...Kurla Call Girls Pooja Nehwal📞 9892124323 ✅  Vashi Call Service Available Nea...
Kurla Call Girls Pooja Nehwal📞 9892124323 ✅ Vashi Call Service Available Nea...Pooja Nehwal
 
NO1 Trending kala jadu Love Marriage Black Magic Punjab Powerful Black Magic ...
NO1 Trending kala jadu Love Marriage Black Magic Punjab Powerful Black Magic ...NO1 Trending kala jadu Love Marriage Black Magic Punjab Powerful Black Magic ...
NO1 Trending kala jadu Love Marriage Black Magic Punjab Powerful Black Magic ...Amil baba
 
Kindergarten Assessment Questions Via LessonUp
Kindergarten Assessment Questions Via LessonUpKindergarten Assessment Questions Via LessonUp
Kindergarten Assessment Questions Via LessonUpmainac1
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Douxkojalkojal131
 
Cosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable BricksCosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable Bricksabhishekparmar618
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation decktbatkhuu1
 
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call GirlsCBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girlsmodelanjalisharma4
 
Cheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk Gurgaon
Cheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk GurgaonCheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk Gurgaon
Cheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk GurgaonDelhi Call girls
 

Recently uploaded (20)

Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
 
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptx
 
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
 
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceCALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
 
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
 
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 night
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 nightCheap Rate Call girls Kalkaji 9205541914 shot 1500 night
Cheap Rate Call girls Kalkaji 9205541914 shot 1500 night
 
B. Smith. (Architectural Portfolio.).pdf
B. Smith. (Architectural Portfolio.).pdfB. Smith. (Architectural Portfolio.).pdf
B. Smith. (Architectural Portfolio.).pdf
 
Kurla Call Girls Pooja Nehwal📞 9892124323 ✅ Vashi Call Service Available Nea...
Kurla Call Girls Pooja Nehwal📞 9892124323 ✅  Vashi Call Service Available Nea...Kurla Call Girls Pooja Nehwal📞 9892124323 ✅  Vashi Call Service Available Nea...
Kurla Call Girls Pooja Nehwal📞 9892124323 ✅ Vashi Call Service Available Nea...
 
NO1 Trending kala jadu Love Marriage Black Magic Punjab Powerful Black Magic ...
NO1 Trending kala jadu Love Marriage Black Magic Punjab Powerful Black Magic ...NO1 Trending kala jadu Love Marriage Black Magic Punjab Powerful Black Magic ...
NO1 Trending kala jadu Love Marriage Black Magic Punjab Powerful Black Magic ...
 
Kindergarten Assessment Questions Via LessonUp
Kindergarten Assessment Questions Via LessonUpKindergarten Assessment Questions Via LessonUp
Kindergarten Assessment Questions Via LessonUp
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
 
Cosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable BricksCosumer Willingness to Pay for Sustainable Bricks
Cosumer Willingness to Pay for Sustainable Bricks
 
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
 
escort service sasti (*~Call Girls in Prasad Nagar Metro❤️9953056974
escort service sasti (*~Call Girls in Prasad Nagar Metro❤️9953056974escort service sasti (*~Call Girls in Prasad Nagar Metro❤️9953056974
escort service sasti (*~Call Girls in Prasad Nagar Metro❤️9953056974
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation deck
 
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call GirlsCBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
 
young call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Service
young call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Service
young call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Service
 
Cheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk Gurgaon
Cheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk GurgaonCheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk Gurgaon
Cheap Rate ➥8448380779 ▻Call Girls In Iffco Chowk Gurgaon
 

JSON

  • 1.
  • 2. Team Members 1. Anum Hanif 2. Farina Khan 3. Hafiza Areeba 4. Haya Samar 5. Maheen Ashraf 6. Ramsha Arif 7. Sadaf Allahdin 8. Sobia Hashmi 9. Sundus Munawar 10. Zara Tariq
  • 3. What is JSON? • Lightweight data-interchange format • Subset of JavaScript • Easy for humans to read and write • Easy for machines to parse and generate • Language independent JSON
  • 4. Properties of JSON • Human and machine readable format. • Strict syntax and parsing requirements. • Represents the most general computer science data structures like records, lists and trees. JSON
  • 5. Data Interchange • JSON is a simple, common representation of data. • Communication between servers and browser clients. JSON
  • 6. Where to use JSON? • It is useful when writing any kind of JavaScript-based application. • I t is used primarily to transmit data between a server and web application. • JSON with PHP • JSON with Perl • JSON with Python • JSON with JavaScript JSON
  • 7. Where to use JSON? • JSON with PHP • json_encode • json_decode • json_last_error • JSON with Perl • to_json • from_json • convert_blessed JSON
  • 8. Where to use JSON? • JSON with Python JSON • encode • decode • JSON with Javascript • JSON.stringify • JSON.parse
  • 9. Why JSON ? • JSON is syntax for storing and exchanging text information. • The JSON text format is syntactically identical to the code for creating JavaScript objects. • Because of this similarity, instead of using a parser, a JS program can use the built-in functions and execute JSON data to produce native JavaScript objects. JSON
  • 10. Why JSON ? • 3 Reasons why you should use JSON • Clean data • Efficiency • Scalability • As compared to XML, JSON is JSON • smaller • faster and • easier to parse
  • 11. How to use it..? • JSON syntax is a subset of JavaScript syntax • Json Syntax Rules • Data is in name/value pairs • Data is separated by commas • Curly braces hold objects • Square brackets hold arrays • JSON Name/Value Pairs • JSON data is written as name/value pairs • Example • "firstName" : "John" JSON
  • 12. How to use it..? • JSON values can be  A number (integer or floating point)  A string (in double quotes)  A Boolean (true or false)  An array (in square brackets)  An object (in curly brackets)  null • JSON Objects  JSON objects are written inside curly brackets  Objects can contain multiple name/values pairs • Example { "firstName":"John" , "lastName":"Doe" } JSON
  • 13. How to use it..? Simple Example JSON
  • 14. How to use it..? Result JSON
  • 15. JSON vs. XML JSON JSON • JSON is a text-based format. • JSON data types: string, number, array, Boolean. • JSON does not contain start and end tags. • JSON include arrays. • JSON does not have support for Namespaces. XML • XML is a Markup Language. • XML data are all string. • Xml contain start and end tags. • XML doesn't include arrays. • XML supports Namespaces.
  • 16. JSON vs. XML <?xml version=“1.0” encoding=“utf- 8”?> <students> <student> <name>Ali</name> <age>20</age> <gender>male</gender> </student> <student> <name>Bilal</name> <age>21</age> <gender>male</gender> </student> </students> “students”= [ {“name”: “Ali”, “age”: “20”, “gender”: “Male”}, {“name”: “Bilal”, “age”: “21”, “gender”: “Male”} ] JSON JSON XML
  • 18. Examples Of JSON • Android weather app: JSON, HTTP, Async Task and Openweathermap HTTP Connection OpenWeatherMap API Async Task JSON Object and Parser Display Data JSON

Editor's Notes

  1. The JSON format was originally specified by Douglas Crockford The JSON filename extension is .json.