我正在尝试使用 Android 15 中的 exificient-grammars 库创建语法(c 是上下文)
Grammars g = GrammarFactory.newInstance().createGrammars(c.getAssets().open("svg.xsd"));
从 svg.xsd 导入另外两个模式:xlink.xsd 和 namespace.xsd。这两个文件随 svg.xsd 出现(如您所见,它们位于 svg.xsd 的根目录中)。但是我没有创建语法,而是得到了这个异常:
com.siemens.ct.exi.exceptions.EXIException: Problem occured while building XML Schema Model (XSModel)!
. [xs-warning] schema_reference.4: Failed to read schema document 'xlink.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.
. [xs-warning] schema_reference.4: Failed to read schema document 'namespace.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.
使用 import的两行svg.xsd
是:
<xs:import namespace="http://www.w3.org/1999/xlink" schemaLocation="xlink.xsd"/>
<xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="namespace.xsd"/>
到目前为止我已经尝试过:
- 我天真地试图合并 svg.xsd 中的两个 xsd 只是明白我根本不知道 xsd 文件是如何工作的。
- 跟踪消息来源,
SchemaInformedGrammars.class
但我不明白是什么systemId
。 - (编辑)按照此处支持的建议(第二篇文章)我用来
com.siemens.ct.exi.grammars.XSDGrammarsBuilder
创建语法:
XSDGrammarsBuilder xsd = XSDGrammarsBuilder.newInstance();
xsd.loadGrammars(c.getAssets().open("namespace.xsd"));
xsd.loadGrammars(c.getAssets().open("xlink.xsd"));
xsd.loadGrammars(c.getAssets().open("svg.xsd"));
SchemaInformedGrammars sig = xsd.toGrammars();
exiFactory.setGrammars(sig);
只是为了得到完全相同的错误......
我的问题: 问题似乎是解析器无法找到另外两个文件。有没有办法以某种方式包含这些文件,以便解析器可以找到它们?