java.util.zip.ZipEntry類


java.util.zip.ZipEntry類用於表示ZIP檔案條目。

類宣告

以下是java.util.zip.ZipEntry類的宣告 -

public class ZipEntry
   extends Object
      implements Cloneable

欄位

以下是java.util.zip.ZipEntry類的欄位 -

  • protected byte[] buf - 用於寫入未壓縮資料的輸出緩衝區。
  • protected Inflater inf - 這個流的解壓縮器。
  • `static int CENATT``
  • static int CENATX
  • static int CENCOM
  • static int CENCRC
  • static int CENDSK
  • static int CENEXT
  • static int CENFLG
  • static int CENHDR
  • static int CENHOW
  • static int CENLEN
  • static int CENNAM
  • static int CENOFF
  • static long CENSIG
  • static int CENSIZ
  • static int CENTIM
  • static int CENVEM
  • static int CENVER
  • static int DEFLATED - 壓縮(壓縮)條目的壓縮方法。
  • static int ENDCOM
  • static int ENDHDR
  • static int ENDOFF
  • static long ENDSIG
  • static int ENDSIZ
  • static int ENDSUB
  • static int ENDTOT
  • static int EXTCRC
  • static int EXTHDR
  • static int EXTLEN
  • static long EXTSIG
  • static int EXTSIZ
  • static int LOCCRC
  • static int LOCEXT
  • static int LOCFLG
  • static int LOCHDR
  • static int LOCHOW
  • static int LOCLEN
  • static int LOCNAM
  • static long LOCSIG
  • static int LOCSIZ
  • static int LOCTIM
  • static int LOCVER
  • static int STORED - 未壓縮條目的壓縮方法。

建構函式

編號 建構函式 描述
1 ZipEntry(String name) 使用指定的名稱建立一個新的zip條目。
2 ZipEntry(ZipEntry e) 建立一個新的zip條目,其中包含從指定的zip條目中獲取的欄位。

類方法

編號 方法 描述
1 Object clone() 返回此條目的副本。
2 String getComment() 返回條目的註釋字串;如果沒有,則返回null
3 long getCompressedSize() 返回壓縮條目資料的大小,如果未知,則返回-1
4 long getCrc() 返回未壓縮條目資料的CRC-32校驗和,如果未知,則返回-1
5 byte[] getExtra() 返回條目的額外欄位資料,如果沒有,則返回null
6 int getMethod() 返回條目的壓縮方法,如果未指定,則返回-1
7 String getName() 返回條目的名稱。
8 long getSize() 返回條目資料的未壓縮大小,如果未知,則返回-1
9 long getTime() 返回條目的修改時間,如果未指定,則返回-1
10 int hashCode() 返回此條目的雜湊碼值。
11 boolean isDirectory() 如果這是一個目錄條目,則返回true
12 void setComment(String comment) 設定條目的可選注釋字串。
13 void setCrc(long crc) 設定未壓縮條目資料的CRC-32校驗和。
14 void setExtra(byte[] extra) 為條目設定可選的額外欄位資料。
15 void setMethod(int method) 設定條目的壓縮方法。
16 void setSize(long size) 設定條目資料的未壓縮大小。
17 void setTime(long time) 設定條目的修改時間。
18 String toString() 返回ZIP條目的字串表示形式。

繼承的方法

這個類繼承了以下類的方法 -

  • java.io.FilterOutputStream
  • java.lang.Object