如何使用一个转换将相同的转换应用于许多具有相似名称的xml文件

时间:2015-10-19 15:30:06

标签: xml xslt

我需要使用一个xslt一次将属性更改为几个.xml文件中的某个值。文件名都以常用短语开头,以唯一编号结尾(例如abc01.xml,abc02.xml,abc03.xml等)。有没有办法使用一个xsl转换来定位像这样的.xml文件集合?

以下是我到目前为止所尝试的内容,但不起作用:

<?xml version="2.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template select="document(../SavedDashboards/*.xml)" match="Tab/@Caption">
      <xsl:attribute name="Caption">Dashboard</xsl:attribute>
    </xsl:template>
  </xsl:document>
</xsl:stylesheet>

1 个答案:

答案 0 :(得分:1)

这取决于您使用的XSLT处理器,例如http://saxonica.com/html/documentation/using-xsl/commandline.html中记录的Saxon 9允许您处理文件目录,如果您将其称为例如文件目录。 java -jar saxon9.jar -s:inputDirectoryName -o:outputDirectoryName -xsl:sheet.xsl。然后你的样式表sheet.xsl就可以了

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

    <xsl:template match="@* | node()">
       <xsl:copy>
          <xsl:apply-templates select="@* , node()"/>
       </xsl:copy>
    </xsl:template>

    <xsl:template match="Tab/@Caption">
      <xsl:attribute name="Caption">Dashboard</xsl:attribute>
    </xsl:template>

</xsl:stylesheet>