ここでは、要素ではない拡張値 (AnyType) を回復しようとしているため、「element.getchild()」と co は機能しません。問題を解決する方法を知っていますか? ありがとう。
<xsd:extension base="AnyType">
<xsd:attribute name="Critical" type="xsd:boolean" use="required"/>
</xsd:extension>
base
属性の値を取得しようとしていますか ("AnyType"
この場合)? Element.getAttributeValue(String)
次の方法を使用します。
String baseAttrValue = element.getAttributeValue("base");