search
HomeBackend DevelopmentXML/RSS TutorialA detailed introduction to the advantages and disadvantages of JSON and XML

JSON(Javascript Object Notation) is a lightweight data exchange format. Easy for humans to read and write. It is also easy for machines to parse and generate. It is based on Javascript Programming Language, a subset of Standard ECMA-262 3rd Edition - December 1999. JSON uses a completely language-independent text format, but also uses conventions similar to the C language family (including C, C++, C#, Java, Javascript, Perl, Python, etc.). These properties make JSON an ideal data exchange language.
The concept of JSON is very simple, that is, the server directly generates Javascript statements, and the client directly uses the eval method to obtain the object after obtaining it, thus eliminating the cost of parsing XML.
If you want to load information from the background, write it in XML, as follows:

<contact>
<friend>
<name>Michael</name>
<email>17bity@gmail.com</email>
<homepage>http://www.jialing.net</homepage>
</friend>
<friend>
<name>John</name>
<email>john@gmail.com</email>
<homepage>http://www.john.com</homepage>
</friend>
<friend>
<name>Peggy</name>
<email>peggy@gmail.com</email>
<homepage>http://www.peggy.com</homepage>
</friend>
</contact>

And write it in JSON:

[
{
name:"Michael",
email:"17bity@gmail.com",
homepage:"http://www.jialing.net"
},
{
name:"John",
email:"john@gmail.com",
homepage:"http://www.jobn.com"
},
{
name:"Peggy",
email:"peggy@gmail.com",
homepage:"http://www.peggy.com"
}
]

It’s not only simple in expression, but the most important thing is that it can be discarded and make people confused. The DOM is parsed. Because as long as it meets the Javascript declaration specifications, JavaScript will automatically parse it for you. The basic method of using JSON in Ajax is to load the string of the background declaration Javascript object in the frontend, use the eval method to convert it into an actual object, and finally update it through DHTML Page information.

JSON not only reduces the performance problems and compatibility issues caused by parsing XML, but is also very easy to use for Javascript, which can conveniently traverse arrays and access objects Attribute is used to obtain data. It is also very readable and basically has the properties of structured data. I have to say it is a good method, and in fact Google Maps does not use XML to transfer data, but uses the JSON solution.

Another advantage of JSON is "cross-domain". For example, if you use

JSON definition

in the web page of www.Web.cn, one A lightweight data exchange format that is easy to read and easy to write quickly. The mainstream technology in the industry provides a complete solution (somewhat similar to regular expression, which is supported by most languages ​​today), allowing data exchange between different platforms. JSON adopts a highly compatible text format and also has behavior similar to the C language system.

Definition of XML

Extensible Markup Language (XML), a markup language used to mark electronic documents to make them structural, can be used to mark Data, definitionData type is a source language that allows users to define their own markup language. XML is a subset of Standard Generalized Markup Language (SGML) and is well suited for Web transport. XML provides a unified method for describing and exchanging structured data independent of applications or vendors.

[ XML ]
Advantages of using XML as the transmission format:

  1. Uniform format, compliant with standards

  2. Easy to remotely interact with other systems, data sharing is more convenient

Disadvantages:

  1. XML file format has huge files, complex format, and transmission Bandwidth occupied

  2. Both the server and the client need to spend a lot of code to parse XML, regardless of whether the server or client code becomes extremely complex and difficult to maintain

  3. The way of parsing XML between different browsers on the client side is inconsistent, and a lot of code needs to be written repeatedly

  4. It takes resources and time to parse XML on the server side and client side

[ JSON ]
So besides XML format, are there any other formats? There is a lightweight data exchange format called JSON (JavaScript Object Notation) that can replace XML.

Advantages:

  1. The data format is relatively simple, easy to read and write, the formats are compressed, and takes up little bandwidth

  2. Easy to parse this Language, client-side JavaScript can simply read JSON data through eval_r()

  3. supports multiple languages, including ActionScript, C, C#, ColdFusion, Java, JavaScript, Perl, PHP, Python, Ruby and other server-side languages ​​facilitate server-side parsing

  4. In the PHP world, PHP-JSON and JSON-PHP have already appeared , which facilitates direct calling of PHP serialized programs. PHP server-side objects, arrays, etc. can directly generate JSON format, which facilitates client access and extraction.

  5. Because the JSON format can be used directly by server-side code, it greatly simplifies the code development of server-side and client-side, but the completed tasks remain the same and is easy to maintain

Disadvantages:

  1. The XML format is not as popular and widely used, and it is not as versatile as XML

  2. The JSON format is currently Promotion in Web Service is still in its infancy
    Comparison of the advantages and disadvantages of JSON and XML

  3. In terms of readability, the data readability of JSON and XML is basically the same. The readability of JSON and XML is comparable. One side is the recommended syntax, and the other side is the standardized tag form. It is difficult to distinguish the winner.

  4. In terms of scalability, XML is naturally very scalable, and JSON certainly has it. There is nothing that XML can expand that JSON cannot.

  5. In terms of coding difficulty, XML has a wealth of coding tools, such as Dom4j, JDom, etc. JSON also has tools provided by json.org, but JSON coding is obviously much easier than XML, even if JSON code can be written without the help of tools, but it is not easy to write XML well.

  6. In terms of decoding difficulty, the parsing of XML has to consider the child nodes and parent nodes, which makes people dizzy, while the parsing difficulty of JSON is almost 0. XML loses really nothing at this point.

  7. In terms of popularity, XML has been widely used in the industry, while JSON has just begun. However, in the specific field of Ajax, the future development must be that XML gives way to JSON. By then Ajax should become Ajaj (Asynchronous Javascript and JSON).

  8. JSON and XML also have rich parsing methods.

  9. Compared with XML, JSON has a small data size.

  10. The interaction between JSON and JavaScript is more convenient.

  11. JSON is less descriptive of data than XML.

  12. JSON is much faster than XML.

1. Comparison of data exchange formats about XML and JSON:
XML: extensible markup language, a language similar to HTML. It has no predefined tags and uses DTD (document type definition) document type definition to organize data; the format is unified, cross-platform and language, and has long become a recognized standard in the industry. For specific information, you can ask Google or Baidu. Compared with JSON, a lightweight data exchange format, XML can be called heavyweight.
 JSON: JavaScript Object Notation is a lightweight data exchange format. Easy for humans to read and write. It is also easy for machines to parse and generate. It is based on JavaScript Programming Language, a subset of Standard ECMA-262 3rd Edition - December 1999. JSON uses a completely language-independent text format, but also uses conventions similar to the C language family (including C, C++, C#, Java, JavaScript, Perl, Python, etc.). These properties make JSON an ideal data exchange language.
2. Comparison of data exchange formats about lightweight and heavyweight:
Lightweight and heavyweight are relative terms, so where is the heavyweight of XML compared to JSON? I think it should be reflected In terms of parsing, XML is currently designed with two parsing methods: DOM and SAX;
DOM treats a data exchange format XML as a DOM object, and the entire XML file needs to be read into the memory. This At one point, the principles of JSON and XML are the same, but XML must consider parent nodes and child nodes. At this point, JSON is much less difficult to parse, because JSON is built on two structures: key/value, key A collection of value pairs; an ordered collection of values, which can be understood as an array;
SAX can process the parsed content without reading the entire document. It is a step-by-step parsing method. The program can also terminate parsing at any time. In this way, a large document can be displayed gradually and bit by bit, so SAX is suitable for large-scale parsing. This is currently not possible with JSON.
Therefore, the light/heavyweight difference between JSON and XML is that: JSON only provides an overall parsing solution, and this method can only achieve good results when parsing less data; while XML provides a large-scale A step-by-step data parsing scheme, which is very suitable for processing large amounts of data.
3. Comparison of data exchange formats regarding the difficulty of data format encoding and parsing:
In terms of encoding, although XML and JSON have their own encoding tools, JSON encoding is simpler than XML, even without the help of tools , you can also write JSON code, but it is a bit difficult to write good XML code; like XML, JSON is also text-based, and they both use Unicode encoding, and it is as readable as the data exchange format XML.
Subjectively, JSON is clearer and less redundant. The JSON website provides a strict, if brief, description of JSON syntax. Generally speaking, XML is more suitable for marking documents, while JSON is more suitable for data exchange processing.
In terms of parsing, in the field of ordinary web applications, developers often worry about parsing XML. Whether it is generating or processing XML on the server side, or parsing XML on the client side using JavaScript, it often results in complex code that is extremely low-cost. development efficiency.
In fact, for most web applications, they do not need complex XML to transmit data at all, and the extensibility claimed by XML rarely has an advantage here; many Ajax applications even directly return HTML fragments to build dynamic webs page. Compared with returning XML and parsing it, returning HTML fragments greatly reduces the complexity of the system, but it also lacks a certain degree of flexibility. The data exchange format JSON provides greater simplicity and flexibility than XML or HTML fragments. In web service applications, at least for now, XML still has an unshakable position.

The above is the detailed content of A detailed introduction to the advantages and disadvantages of JSON and XML. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
VUE3怎么使用JSON编辑器VUE3怎么使用JSON编辑器May 12, 2023 pm 05:34 PM

1、先看看效果图,可以自行选择展示效果2、这是我在vue3项目中使用的JSON编辑器,首先引入第三方插件npminstalljson-editor-vue3yarnaddjson-editor-vue33、引入到项目中//导入模块importJsonEditorVuefrom'json-editor-vue3'//注册组件components:{JsonEditorVue},4、一般后端返回的是会将JSON转为String形式我们传给后端也是通过这种形式,就可以通

SpringBoot之Json的序列化和反序列化问题怎么解决SpringBoot之Json的序列化和反序列化问题怎么解决May 12, 2023 pm 04:07 PM

控制json序列化/反序列化1.@JsonIgnoreProperties的用法@JsonIgnoreProperties(value={"prop1","prop2"})用来修饰Pojo类,在序列化和反序列化的时候忽略指定的属性,可以忽略一个或多个属性.@JsonIgnoreProperties(ignoreUnknown=true)用来修饰Pojo类,在反序列化的时候忽略那些无法被设置的属性,包括无法在构造子设置和没有对应的setter方法.2.@Js

Java怎么调用接口获取json数据解析后保存到数据库Java怎么调用接口获取json数据解析后保存到数据库May 14, 2023 am 10:58 AM

Java调用接口获取json数据保存到数据库1.在yml文件中配置自己定义的接口URL//自己定义的JSON接口URLblacklist_data_url:接口URL2.在Controller中添加请求方法和路径/***@Title:查询*@Description:查询车辆的记录*@Author:半度纳*@Date:2022/9/2717:33*/@GetMapping("/Blacklist")publicvoidselectBlacklist(){booleana=imB

深入解析JWT(JSON Web Token)的原理及用法深入解析JWT(JSON Web Token)的原理及用法Jan 10, 2023 am 10:55 AM

本篇文章给大家带来了关于JWT的相关知识,其中主要介绍了什么是JWT?JWT的原理以及用法是什么?感兴趣的朋友,下面一起来看一下吧,希望对大家有帮助。

php输出json无法解析的原因和解决方法【总结】php输出json无法解析的原因和解决方法【总结】Mar 23, 2023 pm 04:35 PM

PHP作为一种常见的编程语言,在web开发中使用广泛,其与前端交互的方式也多种多样。其中,输出Json数据是一种常见的交互方式,但有时候会碰到Json无法解析的问题。为什么会出现无法解析的情况呢?下面列举了几个可能的原因。

java怎么校验json的格式是否符合要求java怎么校验json的格式是否符合要求May 15, 2023 pm 04:01 PM

JSONSchemaJSONSchema是用于验证JSON数据结构的强大工具,Schema可以理解为模式或者规则。JsonSchema定义了一套词汇和规则,这套词汇和规则用来定义Json元数据,且元数据也是通过Json数据形式表达的。Json元数据定义了Json数据需要满足的规范,规范包括成员、结构、类型、约束等。JSONSchema就是json的格式描述、定义、模板,有了他就可以生成任何符合要求的json数据json-schema-validator在java中,对json数据格式的校验,使用

php如何将xml转为json格式?3种方法分享php如何将xml转为json格式?3种方法分享Mar 22, 2023 am 10:38 AM

当我们处理数据时经常会遇到将XML格式转换为JSON格式的需求。PHP有许多内置函数可以帮助我们执行这个操作。在本文中,我们将讨论将XML格式转换为JSON格式的不同方法。

SpringBoot怎么返回Json数据格式SpringBoot怎么返回Json数据格式May 19, 2023 pm 11:49 PM

一、@RestController注解在SpringBoot中的Controller中使用@RestController注解即可返回JSON格式的数据。@RestController注解包含了@Controller和@ResponseBody注解。@ResponseBody注解是将返回的数据结构转换为JSON格式。@Target({ElementType.TYPE})@Retention(RetentionPolicy.RUNTIME)@Documented@Controller@Respons

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools