XML 文档形成了一种树结构,它从“根部”开始,然后扩展到“枝叶”。
一个 XML 文档实例
XML 使用了简单的具有自我描述性的语法:
?xml version="1.0" encoding="ISO-8859-1"? note toGeorge/to fromJohn/from headingReminder/heading bodyDon't forget the meeting this weekend!/body /note
第一行是 XML 声明。它定义 XML 的版本 (1.0) 和所使用的编码 (ISO-8859-1 = Latin-1/西欧字符集)。
下一行描述文档的根元素(像在说:“本文档是一个便签”):
note
接下来 4 行描述根的 4 个子元素(to, from, heading 以及 body):
toGeorge/to fromJohn/from headingReminder/heading bodyDon't forget the meeting this weekend!/body
...[ 查看全文 ]