Inflater 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。
[Android.Runtime.Register("java/util/zip/Inflater", DoNotGenerateAcw=true)]
public class Inflater : Java.Lang.Object
[<Android.Runtime.Register("java/util/zip/Inflater", DoNotGenerateAcw=true)>]
type Inflater = class
inherit Object
- 繼承
- 屬性
備註
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。 ZLIB 壓縮庫最初是 PNG 圖形標準的一部分開發,不受專利保護。 在java.util.zip套件描述的規格中會完整描述。
下列代碼段示範使用 Deflater
和 Inflater
的字串簡單壓縮和解壓縮。
<blockquote>
try {
// Encode a String into bytes
String inputString = "blahblahblah\u20AC\u20AC";
byte[] input = inputString.getBytes("UTF-8");
// Compress the bytes
byte[] output = new byte[100];
Deflater compresser = new Deflater();
compresser.setInput(input);
compresser.finish();
int compressedDataLength = compresser.deflate(output);
// Decompress the bytes
Inflater decompresser = new Inflater();
decompresser.setInput(output, 0, compressedDataLength);
byte[] result = new byte[100];
int resultLength = decompresser.inflate(result);
decompresser.end();
// Decode the bytes into a String
String outputString = new String(result, 0, resultLength, "UTF-8");
} catch(java.io.UnsupportedEncodingException ex) {
// handle
} catch (java.util.zip.DataFormatException ex) {
// handle
}
</blockquote>
的 java.util.zip.Inflater
Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
建構函式
Inflater() |
建立新的解壓縮程式。 |
Inflater(Boolean) |
建立新的解壓縮程式。 |
Inflater(IntPtr, JniHandleOwnership) |
建立 JNI 物件的 Managed 表示法時使用的建構函式;由運行時間呼叫。 |
屬性
Adler |
傳回未壓縮數據的ADLER-32值。 |
BytesRead |
傳回到目前為止的壓縮位元組輸入總數。 |
BytesWritten |
傳回到目前為止未壓縮的位元組輸出總數。 |
Class |
傳回這個 |
Handle |
基礎Android實例的句柄。 (繼承來源 Object) |
JniIdentityHashCode |
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。 (繼承來源 Object) |
JniPeerMembers |
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。 |
PeerReference |
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。 (繼承來源 Object) |
Remaining |
傳回輸入緩衝區中剩餘的位元組總數。 |
ThresholdClass |
此 API 支援適用於 Android 的 Mono 基礎結構,並不適合直接從您的程式代碼使用。 |
ThresholdType |
此 API 支援適用於 Android 的 Mono 基礎結構,並不適合直接從您的程式代碼使用。 |
TotalIn |
傳回到目前為止的壓縮位元組輸入總數。 |
TotalOut |
傳回到目前為止未壓縮的位元組輸出總數。 |
方法
Clone() |
建立並傳回這個 對象的複本。 (繼承來源 Object) |
Dispose() |
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。 (繼承來源 Object) |
Dispose(Boolean) |
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。 (繼承來源 Object) |
End() |
關閉解壓縮程式,並捨棄任何未處理的輸入。 |
Equals(Object) |
指出其他物件是否「等於」這個物件。 (繼承來源 Object) |
Finished() |
如果已到達壓縮數據流的結尾,則傳回 true。 |
GetHashCode() |
傳回此物件的雜湊碼值。 (繼承來源 Object) |
Inflate(Byte[], Int32, Int32) |
將位元組解壓縮到指定的緩衝區。 |
Inflate(Byte[]) |
將位元組解壓縮到指定的緩衝區。 |
InflateAsync(Byte[], Int32, Int32) |
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。 |
InflateAsync(Byte[]) |
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。 |
JavaFinalize() |
當垃圾收集決定不再參考物件時,垃圾收集行程在 物件上呼叫。 (繼承來源 Object) |
NeedsDictionary() |
如果解壓縮需要預設字典,則傳回 true。 |
NeedsInput() |
如果未在輸入緩衝區中保留任何數據,則傳回 true。 |
Notify() |
喚醒正在等候此物件監視器的單一線程。 (繼承來源 Object) |
NotifyAll() |
喚醒正在等候此物件監視器的所有線程。 (繼承來源 Object) |
Reset() |
重設擴充器,以便處理一組新的輸入數據。 |
SetDictionary(Byte[], Int32, Int32) |
將預設字典設定為指定的位元組陣列。 |
SetDictionary(Byte[]) |
將預設字典設定為指定的位元組陣列。 |
SetHandle(IntPtr, JniHandleOwnership) |
設定 Handle 屬性。 (繼承來源 Object) |
SetInput(Byte[], Int32, Int32) |
設定解壓縮的輸入數據。 |
SetInput(Byte[]) |
設定解壓縮的輸入數據。 |
ToArray<T>() |
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。 (繼承來源 Object) |
ToString() |
傳回物件的字串表示。 (繼承來源 Object) |
UnregisterFromRuntime() |
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。 (繼承來源 Object) |
Wait() |
讓目前線程等候直到喚醒為止,通常是藉由em <notified/em>或<em>interrupted</em> 來喚醒它。<> (繼承來源 Object) |
Wait(Int64, Int32) |
讓目前的線程等到喚醒為止,通常是因為 <em>notified</em> 或 <em>interrupted</em>,或直到經過一定數量的實時為止。 (繼承來源 Object) |
Wait(Int64) |
讓目前的線程等到喚醒為止,通常是因為 <em>notified</em> 或 <em>interrupted</em>,或直到經過一定數量的實時為止。 (繼承來源 Object) |
明確介面實作
IJavaPeerable.Disposed() |
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。 (繼承來源 Object) |
IJavaPeerable.DisposeUnlessReferenced() |
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。 (繼承來源 Object) |
IJavaPeerable.Finalized() |
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。 (繼承來源 Object) |
IJavaPeerable.JniManagedPeerState |
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。 (繼承來源 Object) |
IJavaPeerable.SetJniIdentityHashCode(Int32) |
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。 (繼承來源 Object) |
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) |
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。 (繼承來源 Object) |
IJavaPeerable.SetPeerReference(JniObjectReference) |
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。 (繼承來源 Object) |
擴充方法
JavaCast<TResult>(IJavaObject) |
執行 Android 執行時間檢查的類型轉換。 |
JavaCast<TResult>(IJavaObject) |
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。 |
GetJniTypeName(IJavaPeerable) |
此類別提供使用熱門 ZLIB 壓縮連結庫進行一般用途解壓縮的支援。 |