1

在这里,我试图恢复不是元素的扩展值(AnyType),因此“element.getchild()”和 co 不起作用。你知道如何解决这个问题吗?谢谢。

<xsd:extension base="AnyType">
    <xsd:attribute name="Critical" type="xsd:boolean" use="required"/>
</xsd:extension>
4

1 回答 1

2

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");
于 2012-07-09T12:18:29.613 回答