解析XSD以列出元素

时间:2010-08-03 23:19:45

标签: java xsd schema

我一直在尝试解析一个(实际上很多)xsd文件来写出元素名称列表,各自的元素类型和文档。

我查看了XSOM,SAXParser,Xerces,JAXP - 所有这些都使得读取xml和读取节点变得容易。读取xsd而不等同于元素名称(获取所有元素名称的列表)似乎很难。 parser.parse适用于我尝试的大多数lib(因为XSD是一个格式良好的xml),但我无法超越(提取所有元素名称)。

我错过了什么吗?任何人都有类似问题的经历吗?

以下是xsd示例:

<?xml version="1.0" encoding="utf-8" ?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://abc.mycompany.com/dto/address" targetNamespace="http://abc.mycompany.com/sdo/address">
  <xs:complexType name="Address">
    <xs:sequence> 
      <xs:element name="address1" minOccurs="0">
        <xs:annotation>
          <xs:documentation>USPS standardized address: building number, street name, apartment/suite number, and directionals (e.g., NE, SE, NW, SW).</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:normalizedString">
            <xs:maxLength value="100" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="address2" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Additional field for wrapping long addresses.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:normalizedString">
            <xs:maxLength value="100" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="city" minOccurs="0">
        <xs:annotation>
          <xs:documentation>Name of the city, town or village.</xs:documentation>
        </xs:annotation>
        <xs:simpleType>
          <xs:restriction base="xs:normalizedString">
            <xs:maxLength value="26" />
          </xs:restriction>
        </xs:simpleType>
      </xs:element>
      <xs:element name="state" type="xs:normalizedString" minOccurs="0" >
        <xs:annotation>
          <xs:documentation>A pick list of two-letter abbreviations representing US states,
                              military post offices, US protectorates, and Canadian provinces.
      </xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="zipCode" type="xs:normalizedString" minOccurs="0" >
        <xs:annotation>
          <xs:documentation>The first 5 digits of a 9-digit (Zip+4) zip code,
                    used to geographically locate a US address.</xs:documentation>
        </xs:annotation>
      </xs:element>
    </xs:sequence>
  </xs:complexType>
</xs:schema>

1 个答案:

答案 0 :(得分:1)

它必须是一个配置为处理命名空间的解析器。

您还可以使用XSL-T匹配“xs:element”并提取名称。