Ant使用与文件名相同的目录名解压缩/解压缩

时间:2012-08-28 21:20:39

标签: ant

我需要使用ANT构建脚本在tomcat / webapps目录中解压缩war文件。 war文件名不固定。如何在名称与war文件名相同的目录中解压缩它。我知道如何解压缩文件,但问题是它解压缩指定目标目录中的内容。如果我不知道目录名怎么办?

构建之前

tomcat/webapps/
   myApp-0.1.war

构建之后:

tomcat/webapps
   myApp-0.1/
   myApp-0.1.war

2 个答案:

答案 0 :(得分:2)

因此,在了解了一些Ant任务后,我想出了:

<!-- Get the path of the war file. I know the file name pattern in this case -->
<path id="warFilePath">
    <fileset dir="./tomcat/webapps/">
        <include name="myApp-*.war"/>
    </fileset>
</path>

<property name="warFile" refid="warFilePath" />

<!-- Get file name without extension -->
<basename property="warFilename" file="${warFile}" suffix=".war" />

<!-- Create directory with the same name as the war file name -->
<mkdir dir="./tomcat/webapps/${warFilename}" />

<!-- unzip war file -->
<unwar dest="./tomcat/webapps/${warFilename}">
    <fileset dir="./tomcat/webapps/">
        <include name="${warFilename}.war"/>    
    </fileset>
</unwar>

如果有更好的方法,请告诉我。我还使用ant-contrib在stackoverflow上找到a solution,但这不是我想要的。

答案 1 :(得分:2)

干得好bluetech。您的解决方案也可以表达如下:

<target name="unwar-test">
  <property name="webapps.dir" value="tomcat/webapps" />

  <fileset id="war.file.id" dir="${basedir}"
      includes="${webapps.dir}/myApp-*.war" />
  <property name="war.file" refid="war.file.id" />

  <basename property="war.basename" file="${war.file}" suffix=".war" />
  <property name="unwar.dir" location="${webapps.dir}/${war.basename}" />
  <mkdir dir="${unwar.dir}" />
  <unwar dest="${unwar.dir}" src="${war.file}" />
</target>