0

我正在尝试将 linux shell 脚本的功能移植到 Windows ant build.xml。在 linux 脚本中,我被困在这一行,其中 $* 是文件列表 (*.txt):

java -classpath $myClasspath com.myProgram.Main /destinationDirectory $*

所以现在,在 ant 中,我传递了以空格分隔的文件名列表,但是 ant java 任务认为这只是一个文件名,所以它会窒息。有没有办法传入 *.txt 所以我不必在单独的嵌套元素中列出每个文件名?有任何想法吗?谢谢。

4

1 回答 1

1

这个问题很有帮助:

使用它,我能够创建这个 ant java 任务:

<path id="myFiles">
  <fileset dir="src" includes="*.txt" />
</path>

<!-- convert fileset into a single property that is a space separated list of the file paths-->
<pathconvert pathsep=" " property="myFilesPathConverted" refid="myFiles" />

<java classname="com.myProgram.Main">
  <classpath refid="classpath"/>
  <arg value="${outputDirectory}" />
  <arg line="${myFilesPathConverted}" />
</java> 
于 2013-01-31T18:32:58.013 回答