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 Type
    Method
    Description
    void
    process(InputStream in, ZipEntry zipEntry)
    Invoked for each entry in a ZIP file.
  • Method Details

    • process

      void process(InputStream in, ZipEntry zipEntry) throws IOException
      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