java.util.zip.ZipInputStream類


java.util.zip.ZipInputStream類實現用於讀取ZIP檔案格式檔案的輸入流過濾器。 包括對壓縮和未壓縮條目的支援。

類宣告

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

public class ZipInputStream
   extends InflaterInputStream

欄位

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

  • 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 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

建構函式

編號 建構函式 描述
1 ZipInputStream(InputStream in) 建立一個新的ZIP輸入流。
2 ZipInputStream(InputStream in, Charset charset) 建立一個新的ZIP輸入流。

類方法

編號 方法 描述
1 int available() 達到當前輸入資料結尾(EOF)之後返回0,否則返回1
2 void close() 關閉此輸入流並釋放與該流關聯的所有系統資源。
3 void closeEntry() 關閉當前的ZIP條目並定位流以讀取下一個條目。
4 ZipEntry getNextEntry() 讀取下一個ZIP檔案條目並將該流定位在條目資料的開頭。
5 int read(byte[] b, int off, int len) 從當前的ZIP條目讀入一個位元組陣列。
6 long skip(long n) 跳過當前ZIP條目中指定的位元組數。

繼承的方法

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

  • java.util.zip.InflaterInputStream
  • java.io.FilterInputStream
  • java.lang.Object