Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


JarEntryjava.util.jar

Java 1.2cloneable

This
class extends java.util.zip.ZipEntry; it
represents a single file in a JAR archive and the manifest attributes
and digital signatures associated with that file.
JarEntry objects can be read from a JAR file with
JarFile or JarInputStream, and
they can be written to a JAR file with
JarOutputStream. Use getAttributes(
) to obtain the Attributes for the
entry. Use getCertificates( ) to obtain a
java.security.cert.Certificate array that contains
the certificate chains for all digital signatures associated with the
file. In Java 5.0, this digital signature information may be more
conveniently retrieved as an array of CodeSigner
objects.


Figure 16-108. java.util.jar.JarEntry

public class

JarEntry extends java.util.zip.ZipEntry {
// Public Constructors
public

JarEntry (String

name );
public

JarEntry (java.util.zip.ZipEntry

ze );
public

JarEntry (JarEntry

je );
// Public Instance Methods
public java.util.jar.Attributes

getAttributes ( ) throws java.io.IOException;
public java.security.cert.Certificate[ ]

getCertificates ( );

5.0 public java.security.CodeSigner[ ]

getCodeSigners ( );
}


Returned By


java.net.JarURLConnection.getJarEntry( ),
JarFile.getJarEntry( ),
JarInputStream.getNextJarEntry( )


    / 1191