Apache Ant 任务 - GUnzip


描述

Gunzip 任务使用 GZip、BZip2 或 XZ 算法提取存档。仅当输出文件不存在或源资源较新时才会生成。如果省略 dest,则使用 src 的父目录。

特性

先生编号 属性和描述
1

源代码

要扩展的文件/集合。(强制的)

2

目的地

目标文件或目录。(选修的)

例子

用法

创建包含以下内容的 build.xml:

<?xml version="1.0"?>
   <project name="TutorialPoint" default="info">
   <target name="info">
      <gunzip src="text.gz" dest="text.txt"/>
      <echo>File extracted.</echo>
   </target>
</project>

输出

让我们将 text.gz 文件提取到 text.txt。现在在上面的构建文件上运行 Ant 会产生以下输出 -

F:\tutorialspoint\ant>ant
Buildfile: F:\tutorialspoint\ant\build.xml

info:
   [gunzip] Expanding text.gz to F:\tutorialspoint\ant\text.txt
   [echo] File extracted.

BUILD SUCCESSFUL
Total time: 0 seconds

您可以验证 text.txt 文件是否已创建。