static boolean |
ZipUtil.handle(java.io.File zip,
java.lang.String name,
ZipEntryCallback action) |
Reads the given ZIP file and executes the given action for a single entry.
|
static boolean |
ZipUtil.handle(java.io.InputStream is,
java.lang.String name,
ZipEntryCallback action) |
Reads the given ZIP stream and executes the given action for a single
entry.
|
void |
Zips.iterate(ZipEntryCallback zipEntryCallback) |
Reads the source ZIP file and executes the given callback for each entry.
|
static void |
ZipUtil.iterate(java.io.File zip,
java.lang.String[] entryNames,
ZipEntryCallback action) |
Reads the given ZIP file and executes the given action for each given entry.
|
static void |
ZipUtil.iterate(java.io.File zip,
java.lang.String[] entryNames,
ZipEntryCallback action,
java.nio.charset.Charset charset) |
Reads the given ZIP file and executes the given action for each given entry.
|
static void |
ZipUtil.iterate(java.io.File zip,
ZipEntryCallback action) |
Reads the given ZIP file and executes the given action for each entry.
|
static void |
ZipUtil.iterate(java.io.File zip,
ZipEntryCallback action,
java.nio.charset.Charset charset) |
Reads the given ZIP file and executes the given action for each entry.
|
static void |
ZipUtil.iterate(java.io.InputStream is,
java.lang.String[] entryNames,
ZipEntryCallback action) |
|
static void |
ZipUtil.iterate(java.io.InputStream is,
java.lang.String[] entryNames,
ZipEntryCallback action,
java.nio.charset.Charset charset) |
Reads the given ZIP stream and executes the given action for each given entry.
|
static void |
ZipUtil.iterate(java.io.InputStream is,
ZipEntryCallback action) |
|
static void |
ZipUtil.iterate(java.io.InputStream is,
ZipEntryCallback action,
java.nio.charset.Charset charset) |
Reads the given ZIP stream and executes the given action for each entry.
|