jarchivelib

Summary

jarchivelib is a simple archiving and compression library for Java that provides a thin and easy-to-use API layer on top of the powerful and feature-rich org.apache.commons.compress.

Extracting a zip archive may be as simple as invoking:

:::java
Archiver archiver = ArchiverFactory.createArchiver("zip");
archiver.extract(new File("/home/thomas/archive.zip"), new File("/home/thomas/archive/"));