Package | Description |
---|---|
java.util.jar | |
java.util.zip |
Modifier and Type | Class and Description |
---|---|
class |
JarEntry
JarEntry represents an entry in a JAR file.
|
Modifier and Type | Method and Description |
---|---|
protected ZipEntry |
JarInputStream.createZipEntry(String name) |
ZipEntry |
JarFile.getEntry(String name)
Return the JarEntry specified by name or null if no such entry exists
|
ZipEntry |
JarInputStream.getNextEntry()
Returns the next ZipEntry contained in this stream or null if no more
entries are present.
|
Modifier and Type | Method and Description |
---|---|
InputStream |
JarFile.getInputStream(ZipEntry ze)
Return an InputStream for reading the decompressed contents of ze.
|
void |
JarOutputStream.putNextEntry(ZipEntry ze) |
Constructor and Description |
---|
JarEntry(ZipEntry entry)
Create a new JarEntry using the values obtained from entry.
|
Modifier and Type | Method and Description |
---|---|
protected ZipEntry |
ZipInputStream.createZipEntry(String zname) |
ZipEntry |
ZipFile.getEntry(String zname) |
ZipEntry |
ZipInputStream.getNextEntry() |
Modifier and Type | Method and Description |
---|---|
InputStream |
ZipFile.getInputStream(ZipEntry ze) |
void |
ZipOutputStream.putNextEntry(ZipEntry ze)
Prepares the stream to write the data belonging to the ZipEntry passed to this method
DO NOT CHANGE THE ZIPENTRY AFTER PASSING IT TO THIS METHOD, INCONSISTANT DATA WILL BE WRITTEN OUT !
|
Constructor and Description |
---|
ZipEntry(ZipEntry ze) |