使用java XSL转换的结果作为后续转换的样式表
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这样做并没有什么特别的困难,而且是常见的做法。
要生成诸如
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, usexsl:namespace-alias
. There's an example in the XSLT specification itself.