使用java XSL转换的结果作为后续转换的样式表

发布于 2024-12-17 05:38:34 字数 500 浏览 0 评论 0原文

我正在尝试使用 java xsl 转换(来自 XMLSource1.xml 和 StyleSheet1.xsl)的结果作为另一个转换(来自 XMLSource2)的样式表,然后输出结果。

我读了一篇关于 的有趣文章链接转换(也描述了这里但我想要实现的目标是稍微不同,因为第一个转换的结果不是第二个转换的源,而是应该应用于另一个转换的 样式表

我怎样才能实现这一点?

I am trying to use the result of an java xsl transform (from XMLSource1.xml and StyleSheet1.xsl) as a stylesheet for another transform (from XMLSource2) and then output the result.

I read an interesting article about chaining transformations (also described here but what I am trying to achieve is slightly different because the result of the first transformation will not be the source for the second one but the stylesheet that should be apply to another transformation.

How could I achieve this?

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

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

发布评论

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

评论(1

御弟哥哥 2024-12-24 05:38:34

这样做并没有什么特别的困难,而且是常见的做法。

要生成诸如 xsl:value-of 之类的指令而不将其解释为指令,请使用 xsl:namespace-alias。 XSLT 规范本身就有一个示例。

There's no particular difficulty in doing this and it's common practice.

To generate instructions like xsl:value-of without them being interpreted as instructions, use xsl:namespace-alias. There's an example in the XSLT specification itself.

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