gov.nasa.pds.search.util.UnzipUtility Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of registry-mgr-legacy Show documentation
Show all versions of registry-mgr-legacy Show documentation
The Legacy Registry provides the PDS-specific search protocol and the search capability for the PDS search index generated through the Search Core software. The core functionality for this service is satisfied by Apache Solr.
The newest version!
package gov.nasa.pds.search.util;
import static gov.nasa.pds.search.util.RegistryInstallerUtils.print;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Enumeration;
import org.apache.commons.compress.archivers.zip.ZipArchiveEntry;
import org.apache.commons.compress.archivers.zip.ZipFile;
import org.apache.commons.compress.utils.IOUtils;
import org.apache.commons.io.FileUtils;
/**
* This utility extracts files and directories of a standard zip file to
* a destination directory.
*
* Examples taken from:
* http://www.javased.com/?api=org.apache.commons.compress.archivers.zip.ZipArchiveEntry
*
*/
public class UnzipUtility {
public static void unzipFile(String archivePath, String targetPath) throws IOException {
print(" Unzipping " + archivePath + " to " + targetPath);
File archiveFile = new File(archivePath);
File targetFile = new File(targetPath);
ZipFile zipFile = new ZipFile(archiveFile);
Enumeration> e = zipFile.getEntries();
while (e.hasMoreElements()) {
ZipArchiveEntry zipEntry = (ZipArchiveEntry)e.nextElement();
File file = new File(targetFile, zipEntry.getName());
if (zipEntry.isDirectory()) {
FileUtils.forceMkdir(file);
}
else {
InputStream is = zipFile.getInputStream(zipEntry);
FileOutputStream os = FileUtils.openOutputStream(file);
try {
IOUtils.copy(is, os);
}
finally {
os.close();
is.close();
}
}
}
zipFile.close();
print(" Unzip of " + archivePath + " to " + targetPath + " complete.");
}
}