在这里,我试图恢复不是元素的扩展值(AnyType),因此“element.getchild()”和 co 不起作用。你知道如何解决这个问题吗?谢谢。
<xsd:extension base="AnyType">
<xsd:attribute name="Critical" type="xsd:boolean" use="required"/>
</xsd:extension>
Are you trying to get the value of the base
attribute ("AnyType"
in this case)? Use the Element.getAttributeValue(String)
method:
String baseAttrValue = element.getAttributeValue("base");