2010-03-25 53 views
0

我正在嘗試使用dom4j來驗證xml在http://www.w3schools.com/Schema/schema_example.asp使用來自同一頁的xsd。它失敗,出現以下錯誤:w3schools xsd示例不適用於dom4j。如何使用dom4j使用xsds驗證xml?

org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the declaration of element 'shiporder'. 

我用下面的代碼:

SAXReader reader = new SAXReader(); 
reader.setValidation(true); 
reader.setFeature("http://apache.org/xml/features/validation/schema", true); 
reader.setErrorHandler(new XmlErrorHandler()); 
reader.read(in); 

其中是一個InputStream和XmlErrorHandler是一個簡單的類,它只是記錄的所有錯誤。

我用下面的XML文件:

<?xml version="1.0" encoding="ISO-8859-1"?> 

<shiporder orderid="889923" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:noNamespaceSchemaLocation="test1.xsd"> 
    <orderperson>John Smith</orderperson> 
    <shipto> 
    <name>Ola Nordmann</name> 
    <address>Langgt 23</address> 
    <city>4000 Stavanger</city> 
    <country>Norway</country> 
    </shipto> 
    <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> 
    </item> 
</shiporder> 

和相應的xsd:

<?xml version="1.0" encoding="ISO-8859-1" ?> 
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> 

<xs:simpleType name="stringtype"> 
    <xs:restriction base="xs:string"/> 
</xs:simpleType> 

<xs:simpleType name="inttype"> 
    <xs:restriction base="xs:positiveInteger"/> 
</xs:simpleType> 

<xs:simpleType name="dectype"> 
    <xs:restriction base="xs:decimal"/> 
</xs:simpleType> 

<xs:simpleType name="orderidtype"> 
    <xs:restriction base="xs:string"> 
    <xs:pattern value="[0-9]{6}"/> 
    </xs:restriction> 
</xs:simpleType> 

<xs:complexType name="shiptotype"> 
    <xs:sequence> 
    <xs:element name="name" type="stringtype"/> 
    <xs:element name="address" type="stringtype"/> 
    <xs:element name="city" type="stringtype"/> 
    <xs:element name="country" type="stringtype"/> 
    </xs:sequence> 
</xs:complexType> 

<xs:complexType name="itemtype"> 
    <xs:sequence> 
    <xs:element name="title" type="stringtype"/> 
    <xs:element name="note" type="stringtype" minOccurs="0"/> 
    <xs:element name="quantity" type="inttype"/> 
    <xs:element name="price" type="dectype"/> 
    </xs:sequence> 
</xs:complexType> 

<xs:complexType name="shipordertype"> 
    <xs:sequence> 
    <xs:element name="orderperson" type="stringtype"/> 
    <xs:element name="shipto" type="shiptotype"/> 
    <xs:element name="item" maxOccurs="unbounded" type="itemtype"/> 
    </xs:sequence> 
    <xs:attribute name="orderid" type="orderidtype" use="required"/> 
</xs:complexType> 

<xs:element name="shiporder" type="shipordertype"/> 

</xs:schema> 

的XSD和XML文件在同一目錄下。問題是什麼?

+0

沒有錯。 你是如何爲reader.read(in)構建輸入流的。 – 2010-03-25 20:16:58

回答

1

我懷疑這是因爲這樣:

reader.read(in); 

你沒有給讀者任何上下文到輸入流是從哪裏來的,所以它無法解析架構。嘗試通過讀取器,如FileURL對象,它可以用來生成對模式的相對引用。