Unzip Archive with Groovy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T09:48:42Z http://stackoverflow.com/feeds/question/645847 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/645847/unzip-archive-with-groovy 1 Unzip Archive with Groovy HaBaLeS 2009-03-14T12:28:54Z 2009-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#645852 2 Answer by John Feminella for Unzip Archive with Groovy John Feminella 2009-03-14T12:32:35Z 2009-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#1280997 1 Answer by cgorshing for Unzip Archive with Groovy cgorshing 2009-08-15T02:26:43Z 2009-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>