You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

unzip.html 1.4 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Language" content="en-us">
  4. <title>Ant User Manual</title>
  5. </head>
  6. <body>
  7. <h2><a name="unzip">Unjar/Unwar/Unzip</a></h2>
  8. <h3>Description</h3>
  9. <p>Unzips a zip-, war- or jarfile.</p>
  10. <p>For JDK 1.1 &quot;last modified time&quot; field is set to current time instead of being
  11. carried from zipfile.</p>
  12. <p>File permissions will not be restored on extracted files.</p>
  13. <h3>Parameters</h3>
  14. <table border="1" cellpadding="2" cellspacing="0">
  15. <tr>
  16. <td valign="top"><b>Attribute</b></td>
  17. <td valign="top"><b>Description</b></td>
  18. <td align="center" valign="top"><b>Required</b></td>
  19. </tr>
  20. <tr>
  21. <td valign="top">src</td>
  22. <td valign="top">zipfile to expand.</td>
  23. <td align="center" valign="top">Yes</td>
  24. </tr>
  25. <tr>
  26. <td valign="top">dest</td>
  27. <td valign="top">directory where to store the expanded files.</td>
  28. <td align="center" valign="top">Yes</td>
  29. </tr>
  30. <tr>
  31. <td valign="top">overwrite</td>
  32. <td valign="top">Overwrite files, even if they are newer than the
  33. corresponding entries in the archive (true or false, default is
  34. true).</td>
  35. <td align="center" valign="top">No</td>
  36. </tr>
  37. </table>
  38. <h3>Examples</h3>
  39. <blockquote>
  40. <p><code>&lt;unzip src=&quot;${tomcat_src}/tools-src.zip&quot; dest=&quot;${tools.home}&quot;
  41. /&gt;</code></p>
  42. </blockquote>
  43. <hr>
  44. <p align="center">Copyright &copy; 2000,2001 Apache Software Foundation. All rights
  45. Reserved.</p>
  46. </body>
  47. </html>