Interface Unzipper
-
- All Known Implementing Classes:
AbstractUnzipper
,FileUnzipper
,StreamUnzipper
,UrlUnzipper
public interface Unzipper
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ZipEntry[]
entries()
void
unzip()
File
unzipFileInArchive(String fileName)
-
-
-
Method Detail
-
unzip
void unzip() throws IOException
- Throws:
IOException
-
unzipFileInArchive
File unzipFileInArchive(String fileName) throws IOException, FileNotFoundException
- Throws:
IOException
FileNotFoundException
-
entries
ZipEntry[] entries() throws IOException
- Throws:
IOException
-
-