Interface ZipEntryCallback

All Known Implementing Classes:
ZipUtil.BackslashUnpacker

public interface ZipEntryCallback
Call-back for traversing ZIP entries with their contents.
Author:
Rein Raudjärv
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