XSD 使用概述

大雄45發表於2022-09-22
導讀 XML 文件可對 DTD 或 XML Schema 進行引用。
一個簡單的 XML 文件

請看這個名為 "note.xml" 的 XML 文件:

<?xml version="1.0"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
DTD 檔案

下面這個例子是名為 "note.dtd" 的 DTD 檔案,它對上面那個 XML 文件( "note.xml" )的元素進行了定義:

<!ELEMENT note (to, from, heading, body)>
<!ELEMENT to (#PCDATA)>
<!ELEMENT from (#PCDATA)>
<!ELEMENT heading (#PCDATA)>
<!ELEMENT body (#PCDATA)>

第 1 行定義 note 元素有四個子元素:"to, from, heading, body"。

第 2-5 行定義了 to, from, heading, body 元素的型別是 "#PCDATA"。

XML Schema

下面這個例子是一個名為 "note.xsd" 的 XML Schema 檔案,它定義了上面那個 XML 文件( "note.xml" )的元素:

<?xml version="1.0"?>
<xs:schema xmlns:xs="
targetNamespace="
xmlns="
elementFormDefault="qualified">
<xs:element name="note">
    <xs:complexType>
      <xs:sequence>
	<xs:element name="to" type="xs:string"/>
	<xs:element name="from" type="xs:string"/>
	<xs:element name="heading" type="xs:string"/>
	<xs:element name="body" type="xs:string"/>
      </xs:sequence>
    </xs:complexType>
</xs:element>
</xs:schema>

note 元素是一個複合型別,因為它包含其他的子元素。其他元素 (to, from, heading, body) 是簡易型別,因為它們沒有包含其他元素。您將在下面的章節學習更多有關複合型別和簡易型別的知識。

對 DTD 的引用

此檔案包含對 DTD 的引用:

<?xml version="1.0"?>
<!DOCTYPE note SYSTEM
"
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
對 XML Schema 的引用

此檔案包含對 XML Schema 的引用:

<?xml version="1.0"?>
<note
xmlns="
xmlns:xsi="
xsi:schemaLocation="
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>

原文來自:


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69955379/viewspace-2915716/,如需轉載,請註明出處,否則將追究法律責任。