2001-02-13 12:32:01 +00:00
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Language" content="en-us">
|
2005-04-29 18:58:16 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="../stylesheets/style.css">
|
2002-02-03 22:00:42 +00:00
|
|
|
<title>Unzip Task</title>
|
2001-02-13 12:32:01 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
2001-11-21 07:31:01 +00:00
|
|
|
<h2><a name="unzip">Unjar/Untar/Unwar/Unzip</a></h2>
|
2001-02-13 12:32:01 +00:00
|
|
|
<h3>Description</h3>
|
2005-02-07 23:42:21 +00:00
|
|
|
<p>Unzips a zip-, war-, or jar file.</p>
|
2001-11-21 07:31:01 +00:00
|
|
|
<p><a href="../CoreTypes/patternset.html">PatternSet</a>s are used to select files to extract
|
|
|
|
<I>from</I> the archive. If no patternset is used, all files are extracted.
|
|
|
|
</p>
|
2004-10-30 19:44:02 +00:00
|
|
|
<p><a href="../CoreTypes/fileset.html">FileSet</a>s may be used to select archived files
|
2001-11-21 07:31:01 +00:00
|
|
|
to perform unarchival upon.
|
|
|
|
</p>
|
2004-10-30 19:44:02 +00:00
|
|
|
<p>You can define filename transformations by using a nested <a href="../CoreTypes/mapper.html">mapper</a> element. The default mapper is the
|
|
|
|
<a href="../CoreTypes/mapper.html#identity-mapper">identity mapper</a>.
|
|
|
|
</p>
|
2001-02-13 12:32:01 +00:00
|
|
|
<p>File permissions will not be restored on extracted files.</p>
|
2001-11-21 07:31:01 +00:00
|
|
|
<p>The untar task recognizes the long pathname entries used by GNU tar.<p>
|
2001-02-13 12:32:01 +00:00
|
|
|
<h3>Parameters</h3>
|
|
|
|
<table border="1" cellpadding="2" cellspacing="0">
|
|
|
|
<tr>
|
|
|
|
<td valign="top"><b>Attribute</b></td>
|
|
|
|
<td valign="top"><b>Description</b></td>
|
|
|
|
<td align="center" valign="top"><b>Required</b></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td valign="top">src</td>
|
2001-11-21 07:31:01 +00:00
|
|
|
<td valign="top">archive file to expand.</td>
|
|
|
|
<td align="center" valign="top">Yes, if filesets are not used.</td>
|
2001-02-13 12:32:01 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td valign="top">dest</td>
|
|
|
|
<td valign="top">directory where to store the expanded files.</td>
|
2001-11-21 22:36:12 +00:00
|
|
|
<td align="center" valign="top">Yes</td>
|
2001-02-13 12:32:01 +00:00
|
|
|
</tr>
|
2001-07-27 06:52:51 +00:00
|
|
|
<tr>
|
|
|
|
<td valign="top">overwrite</td>
|
|
|
|
<td valign="top">Overwrite files, even if they are newer than the
|
|
|
|
corresponding entries in the archive (true or false, default is
|
|
|
|
true).</td>
|
|
|
|
<td align="center" valign="top">No</td>
|
|
|
|
</tr>
|
2002-04-24 03:09:06 +00:00
|
|
|
<tr>
|
|
|
|
<td valign="top">compression</td>
|
2003-07-03 13:02:01 +00:00
|
|
|
<td valign="top"><b>Note:</b> This attribute is only available for
|
|
|
|
the <code>untar</code> task.<br>
|
|
|
|
compression method. Allowable values are "none",
|
|
|
|
"gzip" and "bzip2". Default is
|
|
|
|
"none".</td>
|
2002-04-24 03:09:06 +00:00
|
|
|
<td valign="top" align="center">No</td>
|
|
|
|
</tr>
|
2003-07-03 13:02:01 +00:00
|
|
|
<tr>
|
|
|
|
<td valign="top">encoding</td>
|
|
|
|
<td valign="top"><b>Note:</b> This attribute is not available for
|
|
|
|
the <code>untar</code> task.<br>
|
|
|
|
The character encoding that has been used for filenames
|
|
|
|
inside the zip file. For a list of possible values see <a
|
|
|
|
href="http://java.sun.com/products/jdk/1.2/docs/guide/internat/encoding.doc.html">http://java.sun.com/products/jdk/1.2/docs/guide/internat/encoding.doc.html</a>.<br>
|
|
|
|
Defaults to "UTF8", use the magic value
|
|
|
|
<code>native-encoding</code> for the platform's default character
|
|
|
|
encoding.</td>
|
|
|
|
<td align="center" valign="top">No</td>
|
|
|
|
</tr>
|
2002-04-24 03:09:06 +00:00
|
|
|
|
2001-02-13 12:32:01 +00:00
|
|
|
</table>
|
|
|
|
<h3>Examples</h3>
|
2005-03-10 13:01:55 +00:00
|
|
|
<pre>
|
|
|
|
<unzip src="${tomcat_src}/tools-src.zip" dest="${tools.home}"/>
|
|
|
|
</pre>
|
2005-04-29 18:58:16 +00:00
|
|
|
<p>
|
2005-03-10 13:01:55 +00:00
|
|
|
<pre>
|
|
|
|
<gunzip src="tools.tar.gz"/>
|
2001-11-21 07:31:01 +00:00
|
|
|
<untar src="tools.tar" dest="${tools.home}"/>
|
2005-03-10 13:01:55 +00:00
|
|
|
</pre>
|
|
|
|
<pre>
|
2001-11-21 07:31:01 +00:00
|
|
|
<unzip src="${tomcat_src}/tools-src.zip"
|
2001-11-21 22:36:12 +00:00
|
|
|
dest="${tools.home}">
|
2001-11-21 07:31:01 +00:00
|
|
|
<patternset>
|
|
|
|
<include name="**/*.java"/>
|
|
|
|
<exclude name="**/Test*.java"/>
|
2002-06-01 12:26:43 +00:00
|
|
|
</patternset>
|
|
|
|
</unzip>
|
2005-03-10 13:01:55 +00:00
|
|
|
</pre>
|
2005-04-29 18:58:16 +00:00
|
|
|
<p>
|
2005-03-10 13:01:55 +00:00
|
|
|
<pre>
|
2001-11-21 22:36:12 +00:00
|
|
|
<unzip dest="${tools.home}">
|
2001-11-21 07:31:01 +00:00
|
|
|
<patternset>
|
|
|
|
<include name="**/*.java"/>
|
|
|
|
<exclude name="**/Test*.java"/>
|
2002-06-01 12:26:43 +00:00
|
|
|
</patternset>
|
2001-11-21 07:31:01 +00:00
|
|
|
<fileset dir=".">
|
|
|
|
<include name="**/*.zip"/>
|
|
|
|
<exclude name="**/tmp*.zip"/>
|
2002-06-01 12:26:43 +00:00
|
|
|
</fileset>
|
|
|
|
</unzip>
|
2005-03-10 13:01:55 +00:00
|
|
|
</pre>
|
2005-04-29 18:58:16 +00:00
|
|
|
<p>
|
2005-03-10 13:01:55 +00:00
|
|
|
<pre>
|
2004-10-30 19:44:02 +00:00
|
|
|
<unzip src="apache-ant-bin.zip" dest="${tools.home}">
|
|
|
|
<patternset>
|
|
|
|
<include name="apache-ant/lib/ant.jar"/>
|
|
|
|
</patternset>
|
|
|
|
<mapper type="flatten"/>
|
|
|
|
</unzip>
|
2005-03-10 13:01:55 +00:00
|
|
|
</pre>
|
2001-02-13 12:32:01 +00:00
|
|
|
<hr>
|
2005-02-07 23:42:21 +00:00
|
|
|
<p align="center">Copyright © 2000-2005 The Apache Software Foundation. All rights
|
2001-02-13 12:32:01 +00:00
|
|
|
Reserved.</p>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|