Javazip-gzipinputstream-read

提供:Dev Guides
移動先:案内検索

java.util.zip.GZIPInputStream.read()メソッドの例

説明

  • java.util.zip.GZIPInputStream.read(byte [] buf、int off、int len)*メソッドは、圧縮されていないデータをバイト配列に読み込みます。 lenがゼロでない場合、メソッドは入力の一部を解凍できるまでブロックします。それ以外の場合、バイトは読み込まれず、0が返されます。

宣言

以下は、* java.util.zip.GZIPInputStream.read(byte [] buf、int off、int len)*メソッドの宣言です。

public int read(byte[] buf, int off, int len)
   throws IOException

パラメーター

  • buf -データが読み込まれるバッファ。
  • off -宛先配列の開始オフセットb。
  • len -読み取られた最大バイト数。

返品

読み込まれた実際のバイト数。ストリームの終わりに達した場合は-1

例外

  • NullPointerException -bufがnullの場合。
  • IndexOutOfBoundsException -offが負の場合、lenが負の場合、またはlenがbuf.length-offよりも大きい場合。
  • ZipException -圧縮された入力データが破損している場合。
  • IOException -I/Oエラーが発生した場合。

次の例は、java.util.zip.GZIPInputStream.read(byte [] buf、int off、int len)メソッドの使用方法を示しています。

package com.finddevguides;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.Arrays;
import java.util.zip.DataFormatException;
import java.util.zip.GZIPInputStream;
import java.util.zip.GZIPOutputStream;

public class GZIPInputStreamDemo {

   public static void main(String[] args) throws DataFormatException, IOException {
      String message = "Welcome to finddevguides.com;"
         +"Welcome to finddevguides.com;"
         +"Welcome to finddevguides.com;"
         +"Welcome to finddevguides.com;"
         +"Welcome to finddevguides.com;"
         +"Welcome to finddevguides.com;"
         +"Welcome to finddevguides.com;"
         +"Welcome to finddevguides.com;"
         +"Welcome to finddevguides.com;"
         +"Welcome to finddevguides.com;";

      System.out.println("Original Message length : " + message.length());
      byte[] input = message.getBytes("UTF-8");

     //Compress the bytes
      ByteArrayOutputStream arrayOutputStream = new ByteArrayOutputStream();
      GZIPOutputStream outputStream = new GZIPOutputStream(arrayOutputStream);
      outputStream.write(input);
      outputStream.close();

     //Read and decompress the data
      byte[] readBuffer = new byte[5000];
      ByteArrayInputStream arrayInputStream =
         new ByteArrayInputStream(arrayOutputStream.toByteArray());
      GZIPInputStream inputStream = new GZIPInputStream(arrayInputStream);
      int read = inputStream.read(readBuffer,0,readBuffer.length);
      inputStream.close();
     //Should hold the original (reconstructed) data
      byte[] result = Arrays.copyOf(readBuffer, read);

     //Decode the bytes into a String
      message = new String(result, "UTF-8");

      System.out.println("UnCompressed Message length : " + message.length());
   }
}

上記のプログラムをコンパイルして実行すると、次の結果が生成されます-

Original Message length : 300
UnCompressed Message length : 300

link:/cgi-bin/printpage.cgi [__印刷]