Xalan XSLT 多个输出文件?
我只是想知道,是否可以使用 Xalan 将单个输入 XML 文件的处理输出到多个其他文件?
我不一定必须这样做,我知道我可以使用其他工具来做到这一点(如 Saxon),和/或我可以处理不同的文件以获得不同的输出。我只是想知道我必须使用哪些选项来使用我计划使用的工具来准确地完成我所要求的操作。任何我不应该使用该工具来完成这项任务的原因也是受欢迎的。
上下文有点简单,我正在尝试转换一个表示多页面、多语言网站结构的 XML 文件。文件的(当前和可能的未来)结构类似于
<pages> <page> <language name="xyz"> <!-- More interesting stuff --> </language> </page> </pages>
“潜在地,一个页面将包含多种语言,但不一定如此”。
I'd just like to know, is it possible to output the processing of a single input XML file to multiple other files using Xalan?
I don't necessarily HAVE to do it that way, I know I can use other tools to do it (like Saxon), and/or I could process different files to obtain different outputs. I'd just like to know the options I have to do exactly what I'm asking for with the very tools I'm planning on using. Any reason why I shouldn't use that tool to do this task is also welcome.
The context is kinda simple, I'm trying to transform an XML file that represents the structure of a multipage, multilanguage website. The (current and potentially future) structure of the file is something like
<pages> <page> <language name="xyz"> <!-- More interesting stuff --> </language> </page> </pages>
Potentially, a page will contain multiple languages, but it doesn't have to be so.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用的是 Xalan-J 或 Xalan-C?如果您使用的是 Xalan-J,则 Redirect 扩展应该执行以下操作诡计。
Are you using Xalan-J or Xalan-C? If you are using Xalan-J, the Redirect extension should do the trick.