XML 指可扩展标记语言(EXtensible Markup Language) XML 仅仅是纯文本 <?xml version=”1.0″ encoding=”ISO-8859-1″?> <note> <to>George</to> <from>John</from> <heading>Reminder</heading> <body>Don’t forget the meeting!</body> </note> 对大小写敏感,必须正确嵌套,必须有根元素 元素名:名称可以含字母、数字以及其他的字符 不能以数字或者标点符号开始 不能以字符 “xml”(或者 XML、Xml)开始 不能包含空格 最好不要用xml属性,用属性来提供与数据无关的信息 <note date=”08/08/2008″> <to>George</to> <from>John</from> <heading>Reminder</heading> <body>Don’t forget the meeting!</body> </note> 更改为 <note> <date> <day>08</day> <month>08</month> <year>2008</year> </date> <to>George</to> <from>John</from> <heading>Reminder</heading> <body>Don’t forget the meeting!</body> </note> 可以用<note id=”"> xml dtd/schema [...]