Uses of Class
net.sf.jazzlib.ZipEntry
-
Packages that use ZipEntry Package Description net.sf.jazzlib nl.siegmann.epublib.epub nl.siegmann.epublib.util -
-
Uses of ZipEntry in net.sf.jazzlib
Fields in net.sf.jazzlib declared as ZipEntry Modifier and Type Field Description private ZipEntryZipOutputStream. curEntryprivate ZipEntryZipInputStream. entryFields in net.sf.jazzlib with type parameters of type ZipEntry Modifier and Type Field Description private java.util.Map<java.lang.String,ZipEntry>ZipFile. entriesMethods in net.sf.jazzlib that return ZipEntry Modifier and Type Method Description protected ZipEntryZipInputStream. createZipEntry(java.lang.String name)Creates a new zip entry for the given name.ZipEntryZipFile. getEntry(java.lang.String name)Searches for a zip entry in this archive with the given name.ZipEntryZipInputStream. getNextEntry()Open the next entry from the zip archive, and return its description.Methods in net.sf.jazzlib that return types with arguments of type ZipEntry Modifier and Type Method Description private java.util.Map<java.lang.String,ZipEntry>ZipFile. getEntries()Checks that the ZipFile is still open and reads entries when necessary.Methods in net.sf.jazzlib with parameters of type ZipEntry Modifier and Type Method Description private longZipFile. checkLocalHeader(ZipEntry entry)Checks, if the local header of the entry at index i matches the central directory, and returns the offset to the data.java.io.InputStreamZipFile. getInputStream(ZipEntry entry)Creates an input stream reading the given zip entry as uncompressed data.voidZipOutputStream. putNextEntry(ZipEntry entry)Starts a new Zip entry.Constructors in net.sf.jazzlib with parameters of type ZipEntry Constructor Description ZipEntry(ZipEntry e)Creates a copy of the given zip entry. -
Uses of ZipEntry in nl.siegmann.epublib.epub
Methods in nl.siegmann.epublib.epub that return ZipEntry Modifier and Type Method Description private static ZipEntryResourcesLoader. getNextZipEntry(ZipInputStream zipInputStream) -
Uses of ZipEntry in nl.siegmann.epublib.util
Methods in nl.siegmann.epublib.util with parameters of type ZipEntry Modifier and Type Method Description static ResourceResourceUtil. createResource(ZipEntry zipEntry, java.io.InputStream zipInputStream)static ResourceResourceUtil. createResource(ZipEntry zipEntry, ZipInputStream zipInputStream)Creates a resource out of the given zipEntry and zipInputStream.
-