|
Préférences
Moteurs de recherche
|
||||||||||||||||||||
JavaTM 2 Platform Std. Ed. v1.4.2
java.util.jar
|
Field Summary |
Fields inherited from class java.util.zip.ZipEntry |
CENATT, CENATX, CENCOM, CENCRC, CENDSK, CENEXT, CENFLG, CENHDR, CENHOW, CENLEN, CENNAM, CENOFF, CENSIG, CENSIZ, CENTIM, CENVEM, CENVER, DEFLATED, ENDCOM, ENDHDR, ENDOFF, ENDSIG, ENDSIZ, ENDSUB, ENDTOT, EXTCRC, EXTHDR, EXTLEN, EXTSIG, EXTSIZ, LOCCRC, LOCEXT, LOCFLG, LOCHDR, LOCHOW, LOCLEN, LOCNAM, LOCSIG, LOCSIZ, LOCTIM, LOCVER, STORED |
Constructor Summary | |
JarEntry(JarEntry je)
Creates a new JarEntry with fields taken from the
specified JarEntry object. |
|
JarEntry(String name)
Creates a new JarEntry for the specified JAR file
entry name. |
|
JarEntry(ZipEntry ze)
Creates a new JarEntry with fields taken from the
specified ZipEntry object. |
Method Summary | |
Attributes |
getAttributes()
Returns the Manifest Attributes for this
entry, or null if none. |
Certificate[] |
getCertificates()
Returns the Certificate objects for this entry, or
null if none. |
Methods inherited from class java.util.zip.ZipEntry |
clone, getComment, getCompressedSize, getCrc, getExtra, getMethod, getName, getSize, getTime, hashCode, isDirectory, setComment, setCompressedSize, setCrc, setExtra, setMethod, setSize, setTime, toString |
Methods inherited from class java.lang.Object |
equals, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public JarEntry(String name)
JarEntry
for the specified JAR file
entry name.
name
- the JAR file entry name
NullPointerException
- if the entry name is null
IllegalArgumentException
- if the entry name is longer than
0xFFFF bytes.public JarEntry(ZipEntry ze)
JarEntry
with fields taken from the
specified ZipEntry
object.
ze
- the ZipEntry
object to create the
JarEntry
frompublic JarEntry(JarEntry je)
JarEntry
with fields taken from the
specified JarEntry
object.
je
- the JarEntry
to copyMethod Detail |
public Attributes getAttributes() throws IOException
Manifest
Attributes
for this
entry, or null
if none.
Manifest
Attributes
for this
entry, or null
if none
IOException
public Certificate[] getCertificates()
Certificate
objects for this entry, or
null
if none. This method can only be called once
the JarEntry
has been completely verified by reading
from the entry input stream until the end of the stream has been
reached. Otherwise, this method will return null
.
The returned certificate array comprises all the signer certificates that were used to verify this entry. Each signer certificate is followed by its supporting certificate chain (which may be empty). Each signer certificate and its supporting certificate chain are ordered bottom-to-top (i.e., with the signer certificate first and the (root) certificate authority last).
Certificate
objects for this entry, or
null
if none.