我们可以使用 Netbeans 7 执行 XSLT 2.0 吗?

发布于 2024-11-14 21:09:20 字数 91 浏览 9 评论 0原文

在当前形式下,Netbeans 仅支持 XSLT 1.0,不支持 XSLT 2.0。

我们如何将 XSLT 2.0 与 Netbeans 7 结合使用?

In its current form, Netbeans only supports XSLT 1.0 and does not support XSLT 2.0.

How do we use XSLT 2.0 with Netbeans 7?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

为你鎻心 2024-11-21 21:09:20

如何使 Saxon 成为 JRE 安装默认 XSLT 处理器:(

因此,不仅 Netbeans,其他 Java 应用程序也可能受到影响。)

  1. 获取 Saxon for Java(有不同版本,选择适合您的版本)并将 saxonXYZ.jar 复制到 jre/lib/ext 目录。
  2. 在 jre/lib 目录中创建一个包含以下内容的 jaxp.properties 文件:

    javax.xml.transform.TransformerFactory = net.sf.saxon.TransformerFactoryImpl

  3. (重新启动 Netbeans。)通过执行 XSL 转换来检查是否成功: 如果已使用 Saxon,XSLT 处理器输出将包含“使用文件中的 net.sf.saxon.Controller XSLT 处理器...”

[使用 NetBeans 7.3.1 / Saxon-HE 进行测试9.4.0 / JRE 1.7.0_17]

还有其他方法可以配置 Java 应用程序中使用的“TransformerFactory”。请参阅 JAXP 常见问题解答。当然,除了 Saxon 之外,还有其他 XSLT 处理器可插入 Java API for XML Processing (JAXP)。

How to make Saxon the JRE-installation-default XSLT Processor:

(So not only for Netbeans, other Java applications might be impacted as well.)

  1. Get Saxon for Java (there are different editions, pick the one suitable for you) and copy saxonXYZ.jar to the jre/lib/ext dir.
  2. In the jre/lib dir create a jaxp.properties file with following content:

    javax.xml.transform.TransformerFactory = net.sf.saxon.TransformerFactoryImpl

  3. (Restart Netbeans.) Check success by doing an XSL Transformation: If Saxon has been used the XSLT Processor output will contain "Using net.sf.saxon.Controller XSLT processor from file ..."

[Tested with NetBeans 7.3.1 / Saxon-HE 9.4.0 / JRE 1.7.0_17]

There are other ways of configuring the "TransformerFactory" used in a Java application. See the JAXP FAQ. And of course, there are also other XSLT processors than Saxon that plug into the Java API for XML Processing (JAXP).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文