xml:如何在.xml文件中引用.xsd文件?

时间:2010-10-19 04:34:27

标签: xml xsd

我想在.xsd文件中定义浏览器中的xml文件。请为我检查以下两个文件,并指出我需要做什么。这两个文件位于同一文件夹下。

employee.xml

 <?xml version="1.0"?>

<employee xmlns="http://www.w3schools.com" 
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
          xsi:schemaLocation="employee.xsd">

  <firstname>John</firstname>
  <lastname>Smith</lastname>
</employee>

的employee.xsd

<xs:element name="employee">
  <xs:complexType>
    <xs:sequence>
      <xs:element name="firstname" type="xs:string" fixed="red" />
      <xs:element name="lastname" type="xs:string"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>

1 个答案:

答案 0 :(得分:39)

您犯了两个错误:一个在架构文件中,另一个在XML文件的xsi:schemaLocation属性值的语法中。

主要错误是您的employee.xsd文件只是XML Schema的一个片段。您应该完成employee.xsd的包含。例如,

<?xml version="1.0" encoding="utf-8"?>
<xs:schema targetNamespace="http://www.w3schools.com/RedsDevils"
    elementFormDefault="qualified"
    xmlns="http://www.w3schools.com/RedsDevils employee.xsd"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">

    <xs:element name="employee">
        <xs:complexType>
            <xs:sequence>
                <xs:element name="firstname" type="xs:string" fixed="red" />
                <xs:element name="lastname" type="xs:string"/>
            </xs:sequence>
        </xs:complexType>
    </xs:element>
</xs:schema>

和employee.xml:

<?xml version="1.0" encoding="utf-8"?>
<employee xmlns="http://www.w3schools.com/RedsDevils"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://www.w3schools.com/RedsDevils employee.xsd">

    <firstname>John</firstname>
    <lastname>Smith</lastname>
</employee>

因为您在XML文件中定义默认命名空间,所以架构位置xsi:schemaLocation必须由命名空间和用空白分隔的架构路径组成。我更改了命名空间名称,使其更加独特:"http://www.w3schools.com/RedsDevils"而不是"http://www.w3schools.com"

最后,我可以补充说,XML文件employee.xml与架构employee.xsd不对应,因为元素<firstname>John</firstname>的值为red,但可能正好是你想要的测试