Uses of Interface
org.zeroturnaround.zip.ZipEntryCallback
Packages that use ZipEntryCallback
-
Uses of ZipEntryCallback in org.zeroturnaround.zip
Classes in org.zeroturnaround.zip that implement ZipEntryCallbackModifier and TypeClassDescriptionstatic classUnpacks each ZIP entries.Methods in org.zeroturnaround.zip with parameters of type ZipEntryCallbackModifier and TypeMethodDescriptionstatic booleanZipUtil.handle(File zip, String name, ZipEntryCallback action) Reads the given ZIP file and executes the given action for a single entry.static booleanZipUtil.handle(InputStream is, String name, ZipEntryCallback action) Reads the given ZIP stream and executes the given action for a single entry.voidZips.iterate(ZipEntryCallback zipEntryCallback) Reads the source ZIP file and executes the given callback for each entry.static voidZipUtil.iterate(File zip, String[] entryNames, ZipEntryCallback action) Reads the given ZIP file and executes the given action for each given entry.static voidZipUtil.iterate(File zip, String[] entryNames, ZipEntryCallback action, Charset charset) Reads the given ZIP file and executes the given action for each given entry.static voidZipUtil.iterate(File zip, ZipEntryCallback action) Reads the given ZIP file and executes the given action for each entry.static voidZipUtil.iterate(File zip, ZipEntryCallback action, Charset charset) Reads the given ZIP file and executes the given action for each entry.static voidZipUtil.iterate(InputStream is, String[] entryNames, ZipEntryCallback action) static voidZipUtil.iterate(InputStream is, String[] entryNames, ZipEntryCallback action, Charset charset) Reads the given ZIP stream and executes the given action for each given entry.static voidZipUtil.iterate(InputStream is, ZipEntryCallback action) static voidZipUtil.iterate(InputStream is, ZipEntryCallback action, Charset charset) Reads the given ZIP stream and executes the given action for each entry.