0
我需要分析以下XSD文件..我要讀所有的值來分析.xsd文件..如何使用XSOMParser
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="urn:books"
xmlns:bks="urn:books">
<xsd:complexType name="Book1">
<xsd:sequence>
<xsd:element minOccurs="0" maxOccurs="1" form="unqualified" name="Title" type="xs:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
請讓我知道我怎麼能使用「XSOMParser」嗎。
爲什麼使用XSOM?這是一個奇特且高度專業化的工具。你不能只使用普通的XML解析器嗎? – skaffman 2012-02-09 11:50:01
看看這個博客[XSOM教程](http://myjavastuffs.blogspot.com/2011/09/xml-schema-document-parsing-using-xsom.html) – 2012-07-13 03:49:52