All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.skjolber.unzip.FileZipFileFactory Maven / Gradle / Ivy

package com.github.skjolber.unzip;

import java.io.File;
import java.io.IOException;

import org.apache.commons.compress.archivers.zip.ZipFile;

public class FileZipFileFactory implements ZipFileSource {

	protected File file;

	public FileZipFileFactory(File file) {
		this.file = file;
	}

	public ZipFile getZipFile() throws IOException {
		return new ZipFile(file);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy