What's XML?

可扩展标记语言(EXtensible Markup Language),用来在后台数据库之间进行数据传输,是一种独立于软硬件的信息传输工具,是一种纯文本。

像html拥有css来为其指定现实格式一样,xml也可以通过css来显示设定好的美观的只显示数据的格式,但是专属于xml的样式表是xslt样式表

以下是描述几本书的信息的xml例子:

<bookstore>
<book category="COOKING">
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
</book>
<book category="CHILDREN">
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
<book category="WEB">
<title lang="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
</book>
</bookstore>


以下是描述一条message的xml例子:

<note>
<to>George</to>
<from>John</from>
<heading>Reminder</heading>
<body>Don't forget the meeting!</body>
</note>



原文地址:https://www.cnblogs.com/testerZH/p/2225133.html