com.github.skjolber.unzip.ZipFileSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unzip-csv Show documentation
Show all versions of unzip-csv Show documentation
Project for unzipping CSV files
package com.github.skjolber.unzip;
import java.io.IOException;
import org.apache.commons.compress.archivers.zip.ZipFile;
public interface ZipFileSource {
ZipFile getZipFile() throws IOException;
}