Package | Description |
---|---|
org.zeroturnaround.zip |
Modifier and Type | Class and Description |
---|---|
static class |
ZipUtil.BackslashUnpacker
Unpacks each ZIP entries.
|
Modifier and Type | Method and Description |
---|---|
static boolean |
ZipUtil.handle(File zip,
String name,
ZipEntryCallback action)
Reads the given ZIP file and executes the given action for a single entry.
|
static boolean |
ZipUtil.handle(InputStream is,
String name,
ZipEntryCallback action)
Reads the given ZIP stream and executes the given action for a single
entry.
|
static void |
ZipUtil.iterate(File zip,
String[] entryNames,
ZipEntryCallback action)
Reads the given ZIP file and executes the given action for each given entry.
|
static void |
ZipUtil.iterate(File zip,
String[] entryNames,
ZipEntryCallback action,
Charset charset)
Reads the given ZIP file and executes the given action for each given entry.
|
static void |
ZipUtil.iterate(File zip,
ZipEntryCallback action)
Reads the given ZIP file and executes the given action for each entry.
|
static void |
ZipUtil.iterate(File zip,
ZipEntryCallback action,
Charset charset)
Reads the given ZIP file and executes the given action for each entry.
|
static void |
ZipUtil.iterate(InputStream is,
String[] entryNames,
ZipEntryCallback action)
|
static void |
ZipUtil.iterate(InputStream is,
String[] entryNames,
ZipEntryCallback action,
Charset charset)
Reads the given ZIP stream and executes the given action for each given entry.
|
static void |
ZipUtil.iterate(InputStream is,
ZipEntryCallback action)
|
static void |
ZipUtil.iterate(InputStream is,
ZipEntryCallback action,
Charset charset)
Reads the given ZIP stream and executes the given action for each entry.
|
void |
Zips.iterate(ZipEntryCallback zipEntryCallback)
Reads the source ZIP file and executes the given callback for each entry.
|
Copyright © 2017 ZeroTurnaround. All rights reserved.