Package org.apache.poi.openxml4j.util
Interface ZipEntrySource
-
- All Superinterfaces:
java.lang.AutoCloseable,java.io.Closeable
- All Known Implementing Classes:
AesZipFileZipEntrySource,ZipFileZipEntrySource,ZipInputStreamZipEntrySource
public interface ZipEntrySource extends java.io.CloseableAn Interface to make getting the different bits of a Zip File easy. Allows you to get at the ZipEntries, without needing to worry about ZipFile vs ZipInputStream being annoyingly very different.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()Indicates we are done with reading, and resources may be freedjava.util.Enumeration<? extends ZipArchiveEntry>getEntries()Returns an Enumeration of all the EntriesZipArchiveEntrygetEntry(java.lang.String path)Return an entry by its pathjava.io.InputStreamgetInputStream(ZipArchiveEntry entry)Returns an InputStream of the decompressed data that makes up the entrybooleanisClosed()Has close been called already?
-
-
-
Method Detail
-
getEntries
java.util.Enumeration<? extends ZipArchiveEntry> getEntries()
Returns an Enumeration of all the Entries
-
getEntry
ZipArchiveEntry getEntry(java.lang.String path)
Return an entry by its path- Parameters:
path- the path in unix-notation- Returns:
- the entry or
nullif not found - Since:
- POI 4.0.0
-
getInputStream
java.io.InputStream getInputStream(ZipArchiveEntry entry) throws java.io.IOException
Returns an InputStream of the decompressed data that makes up the entry- Throws:
java.io.IOException
-
close
void close() throws java.io.IOExceptionIndicates we are done with reading, and resources may be freed- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Throws:
java.io.IOException
-
isClosed
boolean isClosed()
Has close been called already?
-
-