Esempio del metodo java.util.zip.Deflater.deflate ()
Descrizione
Il java.util.zip.Deflater.deflate(byte[] b, int off, int len, int flush)comprime i dati di input e riempie il buffer specificato con dati compressi. Restituisce il numero effettivo di byte di dati compressi.
Dichiarazione
Di seguito è riportata la dichiarazione per java.util.zip.Deflater.deflate(byte[] b, int off, int len, int flush) metodo.
public int deflate(byte[] b, int off, int len, int flush)
Parametri
b - il buffer per i dati compressi.
off - l'offset iniziale dei dati.
len - il numero massimo di byte di dati compressi.
flush - la modalità di flush a compressione.
ritorna
Il numero effettivo di byte di dati compressi scritti nel buffer di output.
Eccezioni
IllegalArgumentException - se la modalità flush non è valida.
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, int off, int len, int flush).
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,0,output.length, Deflater.NO_FLUSH);
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