XML的语法规则既简单又严格,非常容易学习和使用。正因为如此,编写读取和操作XML的软件也是相对容易的事情。
一个XML文档的例子
XML文档使用了自描述的和简单的语法。
?xml version="1.0" encoding="ISO-8859-1"?
note
toTove/to
fromJani/from
headingReminder/heading
bodyDon't forget me this weekend!/body
/note 文档的第1行:XML声明——定义此文档所遵循的XML标准的版本,在这个例子里是1.0版本的标准,使用的是ISO-8859-1 (Latin-1/West European)字符集。
The next line describes the root element of the document (like it was saying: "this document is a note"):
文档的第2行是根元素(就象是说“这篇文档是一个便条”):
note文档的第3--6...[ 查看全文 ]