Java 6 中默认支持 xinclude 吗?
我在我的应用程序中看到,解析的 XML 文件中的 xinclude 在我的 Java XSLT 转换中不起作用。
然而,尽管我这样做:
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
factory.setXIncludeAware(true);
我没有专门将变压器工厂设置为 System.getProperty("javax.xml.transform.TransformerFactory") 返回“null”。
我的问题:默认的 Java(1.6 或 6)是否支持 xinclude 或者我是否必须添加替代的 XSLT 解析器,例如 Apache Xerces?
I see in my application that xinclude inside my parsed XML file does not work within my Java XSLT conversion.
However, although I do:
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
factory.setXIncludeAware(true);
I'm not specifically setting the transformer factory as System.getProperty("javax.xml.transform.TransformerFactory")
returns "null".
My question: does the default Java (1.6 or 6) support xinclude or do I have to add an alternative XSLT parser such as Apache Xerces?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据规范,自 Java 1.5 以来就一直支持(5)。我相信 XInclude 支持依赖于 命名空间感知,出于向后兼容性的原因,默认情况下该功能处于关闭状态。
According to the spec, support has been there since Java 1.5 (5). I believe XInclude support relies on namespace awareness, which is turned off by default for backwards compatibility reasons.