Uses of Class
java.util.zip.ZipEntry
| Package | Description |
|---|---|
| java.util.jar | |
| java.util.zip |
-
Uses of ZipEntry in java.util.jar
Subclasses of ZipEntry in java.util.jar Modifier and Type Class Description classJarEntryRepresents a single file in a JAR archive together with the manifest attributes and digital signatures associated with it.Methods in java.util.jar that return ZipEntry Modifier and Type Method Description protected ZipEntryJarInputStream. createZipEntry(String name)ZipEntryJarFile. getEntry(String name)Return theJarEntryspecified by name ornullif no such entry exists.ZipEntryJarInputStream. getNextEntry()Returns the nextZipEntrycontained in this stream ornullif no more entries are present.Methods in java.util.jar with parameters of type ZipEntry Modifier and Type Method Description InputStreamJarFile. getInputStream(ZipEntry ze)Return anInputStreamfor reading the decompressed contents of ZIP entry.voidJarOutputStream. putNextEntry(ZipEntry ze)Writes the specified ZIP entry to the underlying stream.Constructors in java.util.jar with parameters of type ZipEntry Constructor Description JarEntry(ZipEntry entry)Creates a newJarEntryusing the values obtained from entry. -
Uses of ZipEntry in java.util.zip
Methods in java.util.zip that return ZipEntry Modifier and Type Method Description protected ZipEntryZipInputStream. createZipEntry(String name)creates aZipEntrywith the given name.ZipEntryZipFile. getEntry(String entryName)Returns the zip entry with the given name, or null if there is no such entry.ZipEntryZipInputStream. getNextEntry()Returns the next entry from thisZipInputStreamornullif no more entries are present.Methods in java.util.zip that return types with arguments of type ZipEntry Modifier and Type Method Description Enumeration<? extends ZipEntry>ZipFile. entries()Returns an enumeration of the entries.Methods in java.util.zip with parameters of type ZipEntry Modifier and Type Method Description InputStreamZipFile. getInputStream(ZipEntry entry)Returns an input stream on the data of the specifiedZipEntry.voidZipOutputStream. putNextEntry(ZipEntry ze)Writes entry information to the underlying stream.Constructors in java.util.zip with parameters of type ZipEntry Constructor Description ZipEntry(ZipEntry ze)Constructs a newZipEntryusing the values obtained fromze.