Javazip-inflaterinputstream-read1

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

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

説明

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

宣言

以下は、* java.util.zip.InflaterInputStream.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 -ZIP形式のエラーが発生した場合。
  • IOException -I/Oエラーが発生した場合。

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

package com.finddevguides;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.util.zip.DataFormatException;
import java.util.zip.Deflater;
import java.util.zip.InflaterInputStream;

public class InflaterInputStreamDemo {
   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");
      int length = message.length();
     //Compress the bytes
      byte[] output = new byte[1024];
      Deflater deflater = new Deflater();
      deflater.setInput(input);

      deflater.finish();
      int compressedDataLength = deflater.deflate(output,0 , output.length, Deflater.NO_FLUSH);
      System.out.println("Total uncompressed bytes input :" + deflater.getTotalIn());
      System.out.println("Compressed Message Checksum :" + deflater.getAdler());
      deflater.finished();

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

      ByteArrayInputStream bin = new ByteArrayInputStream(output);
      InflaterInputStream inflaterInputStream = new InflaterInputStream(bin);
      byte[] result = new byte[1024];

      inflaterInputStream.read(result, 0, result.length);

      inflaterInputStream.close();
     //Decode the bytes into a String
      String message1 = new String(result,0, length,"UTF-8");
      System.out.println(message.equals(message1));
   }
}

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

Original Message length : 300
Total uncompressed bytes input :300
Compressed Message Checksum :368538129
Compressed Message length : 42
true

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