XML---命名空间
下面的代码,以及说明都来自:http://www.w3school.com.cn/schema/schema_howto.asp
http://www.w3school.com.cn/schema/schema_schema.asp
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" //①
targetNamespace="http://www.w3school.com.cn" //②
xmlns="http://www.w3school.com.cn" //③
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>
下面的XML文件包含对上面 XML Schema 的引用:
<?xml version="1.0"?>
<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">
<to>George</to>
<from>John</from>
<heading>Reminder</heading>
<body>Don't forget the meeting!</body>
</note>
代码解释:
片段①:
xmlns:xs="http://www.w3.org/2001/XMLSchema"显示 schema 中用到的元素和数据类型来自命名空间 "http://www.w3.org/2001/XMLSchema"。同时它还规定了来自命名空间 "http://www.w3.org/2001/XMLSchema" 的元素和数据类型应该使用前缀 xs:
片断②:
targetNamespace="http://www.w3school.com.cn" 显示被此 schema 定义的元素 (note, to, from, heading, body) 来自命名空间: "http://www.w3school.com.cn"。
片断③:
xmlns="http://www.w3school.com.cn" 指出默认的命名空间是 "http://www.w3school.com.cn"。
片断④:
elementFormDefault="qualified" 指出任何 XML 实例文档所使用的且在此 schema 中声明过的元素必须被命名空间限定。
我的问题:
1:第①段,说schema中用到的元素和数据类型来自命名空间 "http://www.w3.org/2001/XMLSchema",是不是指那些内置的元素、数据类型来自命名空间 "http://www.w3.org/2001/XMLSchema" ?
2:第②的命名空间,是不是指的自己自定义的那些元素来自命名空间: "http://www.w3school.com.cn" ?
如果是的话,可不可以直接在XML实例文档中声明这个命名空间,XML实例文档是可以声明命名空间的吧。如果在实例XML文档中,出现不同的元素来自不同的命名空间,该怎么办?
3:第③段,默认的命名空间,有整个这个干啥呢?内置的、自定义的都有了,还弄个默认的干啥用,虽然这里第②③的命名空间是一样的 为什么要整个默认的?
4:第④段,elementFormDefault="qualified" 指出任何 XML 实例文档所使用的且在此 schema 中声明过的元素必须被命名空间限定。这不是废话吗?命名空间就是起限定的作用的。
--------------------编程问答-------------------- 高人呢?
补充:.NET技术 , C#