xml

xml内容包括 :
元素,
属性,
实体(&nbsp等),
PCDATA (被解析的字符数据  parsed character data),
CDATA

CDATA 区段开始于 "<![CDATA[",  结束于 "]]>"  不会被解析

使用dtd验证:
<!DOCTYPE 根元素 SYSTEM "文件名">  如 :
<!DOCTYPE note SYSTEM "http://www.w3school.com.cn/dtd/note.dtd">


使用xsd验证:
<note
xmlns="http://www.w3school.com.cn"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3school.com.cn note.xsd">

xmlns : 命名空间
xmlns:xsi : 实例命名空间
xsi:schemaLocation : 第一个值是需要使用的命名空间。第二个值是供命名空间使用的 XML schema 的位置。

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

你可能感兴趣的:(xml)