我正在尝试验证 xml 文件。这是我的xsd:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="EXTRACT">
<xs:complexType>
<xs:sequence>
<xs:element ref="HEAD"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="HEAD">
<xs:complexType>
<xs:sequence>
<xs:element name="RequestId" type="xs:integer"/>
<xs:element name="RequestsInBatch" type="xs:string"/>
<xs:element name="PeriodDate" type="xs:date"/>
<xs:element name="Type" type="xs:string"/>
<xs:element name="StartDate" type="xs:date"/>
<xs:element name="EndDate" type="xs:date"/>
<xs:element name="PricingDate" type="xs:date"/>
<xs:any minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
这是我的xml文件
<?xml version='1.0'?>
<EXTRACT>
<HEAD>
<RequestId>1</RequestId>
<RequestsInBatch>1,2</RequestsInBatch>
<PeriodDate>2013-03-31</PeriodDate>
<Type>Monthly</Type>
<StartDate>2013-03-01</StartDate>
<EndDate>2013-03-31</EndDate>
<PricingDate>2013-03-29</PricingDate>
<ReceiptTime>2013-04-02 12:30:00</ReceiptTime>
<CreateTime>2013-04-02 16:00:00</CreateTime>
<RecordCount>3</RecordCount>
<ExceptionCount>1</ExceptionCount>
<ExtractType>FLOWS</ExtractType>
<ExtractCurrency>USD</ExtractCurrency>
</HEAD>
</EXTRACT>
我不关心其他标签,我认为这是由
<xs:any minOccurs="0"/>
但是当我在 Java 中运行时,我收到以下错误 org.xml.sax.SAXParseException: cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'ReceiptTime'
如何验证文件,以便它忽略我没有在 xsd 中声明的任何元素,因为我不需要它们,但它们无论如何都在 xml 文档中?我无法控制 xml 文档的内容,所以我只需要关注我想要提取的数据。