首先,请原谅我英语不好。
问题是:我有一个目录stylesheet-dir
,其中有未定义数量的xsl
文件,当然每个文件都有不同的名称。我需要的是xslt任务,它可以转换目录中的文件数量。到目前为止还不错,这应该做的工作:
<target name="do-report">
<xslt basedir="${stylesheet-dir}" destdir="${output_dir}" style="stylesheet.xsl" force="true">
<classpath location="${processor_path}"/>
</xslt>
</target>
上面^^的问题是,stylesheet.xsl
对于每个变换都是相同的。我需要样式表在每次转换中保持一致。最有趣的是,输入文件和样式表应该是相同的。我一直在网上寻找变通办法,但没有成功。非常感谢您的帮助。
Ant不是一种脚本语言,只对文件集(例如应用任务)的迭代支持有限。在这些情况下,我会找到一个嵌入的groovy脚本,它能够调用其他ANT任务。
示例
├── build.xml
├── src
│ ├── xml
│ │ ├── file1.xml
│ │ ├── file2.xml
│ │ └── file3.xml
│ └── xsl
│ ├── file1.xsl
│ └── file2.xsl
└── target
├── xsl1
│ ├── file1.xml
│ ├── file2.xml
│ └── file3.xml
└── xsl2
├── file1.xml
├── file2.xml
└── file3.xml
build.xml
<project name="demo" default="build">
<available classname="org.codehaus.groovy.ant.Groovy" property="groovy.installed"/>
<target name="build" depends="install-groovy">
<taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy"/>
<fileset id="xslfiles" dir="src/xsl" includes="*.xsl"/>
<fileset id="xmlfiles" dir="src/xml" includes="*.xml"/>
<groovy>
def count = 1
project.references.xslfiles.each { xsl ->
project.references.xmlfiles.each { xml ->
def xslfile = new File(xsl.toString())
def xmlfile = new File(xml.toString())
def outfile = new File("target/xsl${count}", xmlfile.name)
ant.xslt(force:true, style:xslfile, in:xmlfile, out:outfile)
}
count++
}
</groovy>
</target>
<target name="install-groovy" unless="groovy.installed">
<mkdir dir="${user.home}/.ant/lib"/>
<get dest="${user.home}/.ant/lib/groovy-all.jar" src="http://search.maven.org/remotecontent?filepath=org/codehaus/groovy/groovy-all/2.4.5/groovy-all-2.4.5.jar"/>
<fail message="groovy has been installed. Run the build again"/>
</target>
</project>