我正在尝试解析这个复杂类型,但我无法使用XSOM JAVA获取< xsd:anyAttribute元素。 我试过getAttributeUses()和粒子,但是无法得到它。
关于如何解析它的任何想法?
<xsd:sequence>
<xsd:any namespace="##other" processContents="lax" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:anyAttribute namespace="##other" processContents="lax"/>
答案 0 :(得分:0)
假设这个测试XSD:
<?xml version="1.0" encoding="utf-8" ?>
<!--XML Schema generated by QTAssistant/XML Schema Refactoring (XSR) Module (http://www.paschidev.com)-->
<xsd:schema targetNamespace="http://tempuri.org/XMLSchema.xsd" elementFormDefault="qualified" xmlns="http://tempuri.org/XMLSchema.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:complexType name="test">
<xsd:sequence>
<xsd:any namespace="##other" processContents="lax" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:anyAttribute namespace="##other" processContents="lax"/>
</xsd:complexType>
</xsd:schema>
您需要以下代码:
XSOMParser parser = new XSOMParser();
//parser.setErrorHandler(...);
//parser.setEntityResolver(...);
parser.parse(new File(...));
XSSchemaSet sset = parser.getResult();
XSComplexType xt = sset.getComplexType("http://tempuri.org/XMLSchema.xsd", "test");
XSWildcard anyAttr = xt.getAttributeWildcard();
关键是getAttributeWildcard API。