Class ZipFileZipEntrySource

java.lang.Object
org.apache.poi.openxml4j.util.ZipFileZipEntrySource
All Implemented Interfaces:
Closeable, AutoCloseable, ZipEntrySource

public class ZipFileZipEntrySource extends Object implements ZipEntrySource
A ZipEntrySource wrapper around a ZipFile. Should be as low in terms of memory as a normal ZipFile implementation is.
  • Constructor Summary

    Constructors
    Constructor
    Description
    ZipFileZipEntrySource(org.apache.commons.compress.archivers.zip.ZipFile zipFile)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Indicates we are done with reading, and resources may be freed
    Enumeration<? extends org.apache.commons.compress.archivers.zip.ZipArchiveEntry>
    Returns an Enumeration of all the Entries
    org.apache.commons.compress.archivers.zip.ZipArchiveEntry
    Return an entry by its path
    getInputStream(org.apache.commons.compress.archivers.zip.ZipArchiveEntry entry)
    Returns an InputStream of the decompressed data that makes up the entry
    boolean
    Has close been called already?

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ZipFileZipEntrySource

      public ZipFileZipEntrySource(org.apache.commons.compress.archivers.zip.ZipFile zipFile)
  • Method Details