问题描述
我正在尝试升级一些代码以支持 XSD 1.1。当输入 XSD 1.1 架构时,我收到形式为 cvc-elt.1.a: Cannot find the declaration of element '{X}'.
的错误,但是我可以在其他 Xerces 工具中运行此架构/实例。
XMLGrammarPreparser preparser = new XMLGrammarPreparser();
preparser.setErrorHandler( handler);
preparser.registerPreparser( XMLGrammarDescription.XML_SCHEMA,null);
preparser.setFeature( "http://xml.org/sax/features/namespaces",true);
preparser.setFeature( "http://xml.org/sax/features/validation",true);
preparser.setFeature( "http://apache.org/xml/features/validation/schema",true);
preparser.setFeature( "http://apache.org/xml/features/validation/schema-full-checking",true);
try {
preparser.preparseGrammar( XMLGrammarDescription.XML_SCHEMA,new XMLInputSource( null,systemId,null,isReader,encode));
} catch ( XNIException e) {...}
在 Xerces-J 2.12.1 上
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)