昆明理工大學(xué)-XML編程技術(shù)-實驗二_第1頁
昆明理工大學(xué)-XML編程技術(shù)-實驗二_第2頁
昆明理工大學(xué)-XML編程技術(shù)-實驗二_第3頁
昆明理工大學(xué)-XML編程技術(shù)-實驗二_第4頁
昆明理工大學(xué)-XML編程技術(shù)-實驗二_第5頁
已閱讀5頁,還剩3頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)

文檔簡介

1、昆明理工大學(xué)信息工程與自動化學(xué)院學(xué)生實驗報告( 2014 2015 學(xué)年 第二學(xué)期 )課程名稱:XML編程技術(shù)開課實驗室:信自樓2342015年4月20日專業(yè)、年級、班計科122學(xué)號201210405204姓名鄒華宇成績實驗項目名稱XML DTD 與XML Schema的使用指導(dǎo)教師衛(wèi)守林教師評語該同學(xué)是否了解實驗原理:A.了解B.基本了解C.不了解該同學(xué)的實驗?zāi)芰Γ篈.強 B.中等 C.差 該同學(xué)的實驗是否達到要求:A.達到B.基本達到C.未達到實驗報告是否規(guī)范:A.規(guī)范B.基本規(guī)范C.不規(guī)范實驗過程是否詳細記錄:A.詳細B.一般 C.沒有 教師簽名:年 月 日一、實驗?zāi)康?、掌握DTD的定

2、義、引用2、掌握DTD的驗證3、掌握XML Schema的定義、引用4、掌握XML Schema的驗證5、了解XML Schema中名稱空間的使用二、實驗內(nèi)容1、如圖所示,為其系統(tǒng)設(shè)計標(biāo)記語言及其對應(yīng)的DTD,分別命名為code2_1.xml、code2_1.dtd。code2_1.xml:<?xml version="1.0" encoding="utf-8"?><!DOCTYPE 博物館 SYSTEM "code2_1.dtd"><博物館> <油畫><作者>Leonard

3、o da Vinci</作者><尺寸>77*53</尺寸> <成畫時間>1503-1506</成畫時間> </油畫> <雕塑><作者>Michelangelo di Lodovico Buonarroti Simoni</作者><質(zhì)量>5.5噸</質(zhì)量> </雕塑> <古幣><幣值>5</幣值><使用年代>公元前118年</使用年代> </古幣></博物館>code2_

4、1.dtd:<?xml version="1.0" encoding="UTF-8"?><!ELEMENT 博物館 (油畫* , 雕塑* , 古幣*)><!ELEMENT 油畫 (#PCDATA)><!ATTLIST 油畫作者 CDATA #REQUIRED尺寸 CDATA #REQUIRED成畫時間 CDATA #REQUIRED><!ELEMENT 雕塑 (#PCDATA)><!ATTLIST 雕塑作者 CDATA #REQUIRED質(zhì)量 CDATA #REQUIRED><

5、!ELEMENT 古幣 (#PCDATA)><!ATTLIST 古幣幣值 CDATA #REQUIRED使用年代 CDATA #REQUIRED>2、在一個XML文檔中,需要用到一個article的結(jié)點,這個結(jié)點結(jié)構(gòu)如下:<article> <HeadLine section="business"><MainHead>Main headline goes here</MainHead><SubHead>A subheadline goes here</SubHead> </Hea

6、dLine> <ByLine><Author>John Doe</Author><title>Reporter</title> </ByLine> <DateLine>April 30, 2005</Dateline> <body>Content of story goes here</body> <stats> <submitted>2005-03-02</submitted> <wordCount>1523</w

7、ordCount> </stats></article>(1)請在分別定義HeadLine、ByLine、DateLine、stats結(jié)點的數(shù)據(jù)類型基礎(chǔ)上,再定義article的復(fù)雜數(shù)據(jù)類型。<article id=”1000”> <HeadLine section="business"><MainHead>Main headline goes here</MainHead><SubHead>A subheadline goes here</SubHead> </He

8、adLine> <ByLine><Author>John Doe</Author><title>Reporter</title> </ByLine> <DateLine>April 30, 2005</Dateline> <body>Content of story goes here</body> <stats> <submitted>2005-03-02</submitted> <wordCount>1523</

9、wordCount> </stats></article>(2)若以上程序段多篇文章(articles),請為其建立完整的XML Schema文件,保存文件名為code3_1.xsd。code3_1.xsd代碼:<?xml version="1.0" encoding="UTF-8"?><xs:schema xmlns:xs="/2001/XMLSchema" elementFormDefault="qualified" attribu

10、teFormDefault="unqualified"><xs:attributeGroup name="HeadLine"><xs:attribute name="section" type="xs:string"/></xs:attributeGroup><xs:group name="HeadLine"><xs:sequence><xs:element name="MainHead" type=&q

11、uot;xs:string"/><xs:element name="SubHead" type="xs:string"/></xs:sequence></xs:group><xs:group name="ByLine"><xs:sequence><xs:element name="Author" type="xs:string"/><xs:element name="title" t

12、ype="xs:string"/></xs:sequence></xs:group><xs:group name="stats"><xs:sequence><xs:element name="submitted" type="xs:date"/><xs:element name="wordCount" type="xs:int"/></xs:sequence></xs:group&

13、gt;<xs:group name="article"><xs:sequence><xs:element ref="HeadLine"/><xs:element ref="ByLine"/><xs:element name="DateLine" type="xs:date"/><xs:element name="body" type="xs:date"/><xs:group re

14、f="stats"/></xs:sequence></xs:group><xs:element name="HeadLine"/><xs:complexType name="HeadLine"><xs:group ref="HeadLine"/><xs:attributeGroup ref="HeadLine"/></xs:complexType><xs:element name="ByLi

15、ne"/><xs:complexType name="ByLine"><xs:group ref="ByLine"/></xs:complexType><xs:element name="stats"/><xs:complexType name="stats"><xs:group ref="stats"/></xs:complexType><xs:element name="art

16、icle"/><xs:complexType name="article"><xs:group ref="article"/></xs:complexType><xs:element name="articles"><xs:complexType><xs:sequence><xs:element ref="article" maxOccurs="unbounded"/></xs:sequen

17、ce></xs:complexType></xs:element></xs:schema>3、為 " code3_2.xml" XML 文檔設(shè)計對應(yīng)的XML Schema文件,保存文件名為code3_2.xsd。<?xml version="1.0" encoding="ISO-8859-1"?><shiporder orderid="889923"xmlns:xsi="/2001/XMLSchema-instan

18、ce"xsi:noNamespaceSchemaLocation="shiporder.xsd"> <orderperson>George Bush</orderperson> <shipto> <name>John Adams</name> <address>Oxford Street</address> <city>London</city> <country>UK</country> </shipto> <

19、;item> <title>Empire Burlesque</title> <note>Special Edition</note> <quantity>1</quantity> <price>10.90</price> </item> <item> <title>Hide your heart</title> <quantity>1</quantity> <price>9.90</price>

20、</item></shiporder>code3_2.xsd代碼:<?xml version="1.0" encoding="UTF-8"?><xs:schema xmlns:xs="/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified"><xs:attributeGroup name="He

21、adLine"><xs:attribute name="section" type="xs:string"/></xs:attributeGroup><xs:group name="HeadLine"><xs:sequence><xs:element name="MainHead" type="xs:string"/><xs:element name="SubHead" type="x

22、s:string"/></xs:sequence></xs:group><xs:group name="ByLine"><xs:sequence><xs:element name="Author" type="xs:string"/><xs:element name="title" type="xs:string"/></xs:sequence></xs:group><xs:gr

23、oup name="stats"><xs:sequence><xs:element name="submitted" type="xs:date"/><xs:element name="wordCount" type="xs:int"/></xs:sequence></xs:group><xs:group name="article"><xs:sequence><xs:elemen

24、t ref="HeadLine"/><xs:element ref="ByLine"/><xs:element name="DateLine" type="xs:date"/><xs:element name="body" type="xs:date"/><xs:group ref="stats"/></xs:sequence></xs:group><xs:element

25、name="HeadLine"/><xs:complexType name="HeadLine"><xs:group ref="HeadLine"/><xs:attributeGroup ref="HeadLine"/></xs:complexType><xs:element name="ByLine"/><xs:complexType name="ByLine"><xs:group ref="ByLine"/></xs:complexType><xs:element name="stats"/><xs:complexType name="stats"><xs:group ref="stats"/></xs:complexType><xs:element name="article"/><xs:complexType name=&quo

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論