public class ZipFileWalker
extends java.lang.Object
| Constructor and Description |
|---|
ZipFileWalker(java.io.File file) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
walk(OutputHandler outputHandler)
Run the ZipFileWalker using the given OutputHandler
|
public boolean walk(OutputHandler outputHandler) throws java.io.IOException
outputHandler - For every file that is found in the
Zip-file, the method found() in the OutputHandler
is invoked.OutputHandler did
not return true on the call to found().java.io.IOException - Thrown if an error occurs while handling the
Zip-file or while handling the call to found().