Unzip Archive with Groovy - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T09:48:42Zhttp://stackoverflow.com/feeds/question/645847http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/645847/unzip-archive-with-groovy1Unzip Archive with GroovyHaBaLeS2009-03-14T12:28:54Z2009-08-15T02:26:43Z
<p>Hi, is there a built-in support in Groovy to handle Zip files (the groovy way)? Or do i have to use java.util.zip.ZipFile to process Zip files in Groovy ?</p>
http://stackoverflow.com/questions/645847/unzip-archive-with-groovy/645852#6458522Answer by John Feminella for Unzip Archive with GroovyJohn Feminella2009-03-14T12:32:35Z2009-03-14T12:32:35Z<p>AFAIK, there isn't a native way. But check out <a href="http://blog.xebia.com/2008/05/25/powerful-groovy/" rel="nofollow">this article</a> on how you'd add a <code>.zip(...)</code> method to File, which would be very close to what you're looking for. You'd just need to make an <code>.unzip(...)</code> method.</p>
http://stackoverflow.com/questions/645847/unzip-archive-with-groovy/1280997#12809971Answer by cgorshing for Unzip Archive with Groovycgorshing2009-08-15T02:26:43Z2009-08-15T02:26:43Z<p>Maybe Groovy doesn't have 'native' support for zip files, but it is still pretty trivial to work with them.</p>
<p>I'm working with zip files and the following is some of the logic I'm using:</p>
<pre><code>def zipFile = new java.util.zip.ZipFile(new File('some.zip'))
zipFile.entries().each {
println zipFile.getInputStream(it).text
}
</code></pre>
<p>You can add additional logic using a <code>findAll</code> method:</p>
<pre><code>def zipFile = new java.util.zip.ZipFile(new File('some.zip'))
zipFile.entries().findAll { !it.directory }.each {
println zipFile.getInputStream(it).text
}
</code></pre>