使用XInclude进行语法分析时“尝试解析XML文件时出错”

时间:2013-06-04 18:23:43

标签: xml-parsing jaxb xinclude

我正在尝试使用XInclude创建一个组合的xml文档,以便通过JAXB进行解组。

这是我的解组代码:

@Override
public T readFromReader(final Reader reader) throws Exception {
    final Unmarshaller unmarshaller = createUnmarshaller();

    final SAXParserFactory spf = SAXParserFactory.newInstance();
    spf.setXIncludeAware(true);
    spf.setNamespaceAware(true);
    //spf.setValidating(true);

    final XMLReader xr = spf.newSAXParser().getXMLReader();

    final SAXSource source = new SAXSource( xr, new InputSource(reader) );

    try {
        final T object = (T) unmarshaller.unmarshal(source);
        postReadSetup(object);
        return  object;
    } catch (final Exception e) {
        throw new RuntimeException("Cannot parse XML: Additional information is attached. Please ensure your XML is valid.", e);
    }
}

这是我的主要xml文件:

<?xml version="1.0" encoding="UTF-8" ?>
<tag1  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                xmlns:xi="http://www.w3.org/2001/XInclude"
                xsi:schemaLocation="path-to-schema/schema.xsd">

    <xi:include href="path-to-xml-files/included.xml"></xi:include>
</tag1>

并包含了:

<?xml version="1.0" encoding="UTF-8"?>
<tag2> Some text </tag2>

为了实际解组它,我创建了一个新的FileReader,其中包含我的xml文件的路径(path-to-xml-files / main.xml - 路径是正确的,因为它可以清楚地找到主要的文件)。但是,当我运行它时,包含的文件有问题。我收到带有链接SAXParseException的UnmarshalException并显示以下错误消息:尝试解析XML文件时出错(href ='path-to-xml-files / included.xml')。

当我手动将included.xml的内容合并到main.xml中时,它运行没有问题。

我无法判断它是JAXB问题还是XInclude问题,尽管我强烈怀疑后者。

我错过了什么?

2 个答案:

答案 0 :(得分:2)

我用这个完全相同的问题奋斗了三个小时,最后我发现了这个:

xerces.apache.org/xerces2-j/features.html

简而言之,您需要添加以下行:

spf.setFeature(“http://apache.org/xml/features/xinclude/fixup-base-uris”,false);

答案 1 :(得分:0)

我有完全相同的问题。 实际上,href属性需要一个URI,可以是:

  • HTTP地址(这意味着您所包含的XML必须在某处托管)
  • 或本地计算机上的文件。但在这种情况下,您需要在其前面添加“file:...”并提供绝对路径。

用你的例子:

<?xml version="1.0" encoding="UTF-8" ?>
<tag1  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                xmlns:xi="http://www.w3.org/2001/XInclude"
                xsi:schemaLocation="path-to-schema/schema.xsd">

    <xi:include href="file:absolute-path-to-xml-files/included.xml"/>
</tag1>