java.util.zip.Inflater.inflate() 方法示例



描述

java.util.zip.Inflater.inflate(byte[] b) 方法將位元組解壓縮到指定緩衝區中。返回實際解壓縮的位元組數。返回值為 0 表示應呼叫 needsInput() 或 needsDictionary(),以確定是否需要更多輸入資料或預設字典。在後一種情況下,可以使用 getAdler() 獲取所需字典的 Adler-32 值。

宣告

以下是 java.util.zip.Inflater.inflate(byte[] b) 方法的宣告。

public int inflate(byte[] b)
   throws DataFormatException

引數

  • b - 未壓縮資料的緩衝區。

返回值

實際解壓縮的位元組數。

異常

  • DataFormatException - 如果壓縮的資料格式無效。

示例

以下示例演示了 java.util.zip.Inflater.inflate(byte[] b) 方法的用法。

package com.tutorialspoint;

import java.io.UnsupportedEncodingException;
import java.util.zip.DataFormatException;
import java.util.zip.Deflater;
import java.util.zip.Inflater;

public class InflaterDemo {
   public static void main(String[] args) 
      throws DataFormatException, UnsupportedEncodingException {
      String message = "Welcome to TutorialsPoint.com;"
         +"Welcome to TutorialsPoint.com;"
         +"Welcome to TutorialsPoint.com;"
         +"Welcome to TutorialsPoint.com;"
         +"Welcome to TutorialsPoint.com;"
         +"Welcome to TutorialsPoint.com;"
         +"Welcome to TutorialsPoint.com;"
         +"Welcome to TutorialsPoint.com;"
         +"Welcome to TutorialsPoint.com;"
         +"Welcome to TutorialsPoint.com;";
      System.out.println("Original Message length : " + message.length());
      byte[] input = message.getBytes("UTF-8");

      // Compress the bytes
      byte[] output = new byte[1024];
      Deflater deflater = new Deflater();
      deflater.setInput(input);
      deflater.finish();
      int compressedDataLength = deflater.deflate(output);
      deflater.end();

      System.out.println("Compressed Message length : " + compressedDataLength);

      // Decompress the bytes
      Inflater inflater = new Inflater();
      inflater.setInput(output, 0, compressedDataLength);
      byte[] result = new byte[1024];
      int resultLength = inflater.inflate(result);
      inflater.end();

      // Decode the bytes into a String
      message = new String(result, 0, resultLength, "UTF-8");
   
      System.out.println("UnCompressed Message length : " + message.length());
   }
}

讓我們編譯並執行上述程式,這將產生以下結果 -

Original Message length : 300
Compressed Message length : 42
UnCompressed Message length : 300
javazip_inflater.htm
廣告
© . All rights reserved.