Esempio del metodo java.util.zip.Deflater.deflate ()

Descrizione

Il java.util.zip.Deflater.deflate(byte[] b)comprime i dati di input e riempie il buffer specificato con dati compressi. Restituisce il numero effettivo di byte di dati compressi. Un valore restituito di 0 indica che needsInput deve essere chiamato per determinare se sono necessari più dati di input.

Dichiarazione

Di seguito è riportata la dichiarazione per java.util.zip.Deflater.deflate(byte[] b) metodo.

public int deflate(byte[] b)

Parametri

  • b - il buffer per i dati compressi.

ritorna

Il numero effettivo di byte di dati compressi scritti nel buffer di output.

Esempio

L'esempio seguente mostra l'utilizzo del metodo java.util.zip.Deflater.deflate (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 DeflaterDemo {
   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());
   }
}

Compiliamo ed eseguiamo il programma sopra, questo produrrà il seguente risultato:

Original Message length : 300
Compressed Message length : 42
UnCompressed Message length : 300
Stampa