Interface ZipEntryCallback
- All Known Implementing Classes:
ZipEntryOrInfoAdapter, Zips.CopyingCallback, Zips.UnpackingCallback, ZipUtil.BackslashUnpacker, ZipUtil.ByteArrayUnpacker, ZipUtil.FileUnpacker, ZipUtil.RepackZipEntryCallback, ZipUtil.SingleZipEntryCallback, ZipUtil.TransformerZipEntryCallback, ZipUtil.Unpacker, ZipUtil.Unwrapper
public interface ZipEntryCallback
Call-back for traversing ZIP entries with their contents.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidprocess(InputStream in, ZipEntry zipEntry) Invoked for each entry in a ZIP file.
-
Method Details
-
process
Invoked for each entry in a ZIP file.- Parameters:
in- contents of the ZIP entry.zipEntry- ZIP entry.- Throws:
IOException- when any processing exception occurs
-