Función Deflater getBytesWritten() en Java con ejemplos

La función getBytesWritten() de la clase Deflater en java.util.zip devuelve el número total de bytes comprimidos proporcionados hasta ahora.

Firma de función:

public long getBytesWritten()

Sintaxis:

d.getBytesWritten();

Parámetro: la función no requiere ningún parámetro

Tipo de devolución: la función devuelve un valor largo que es el número total de bytes comprimidos de salida.

Excepción: la función no arroja ninguna excepción.

Ejemplo 1:

// Java program to describe the use
// of getBytesWritten() function
  
import java.util.zip.*;
import java.io.UnsupportedEncodingException;
  
class GFG {
    public static void main(String args[])
        throws UnsupportedEncodingException
    {
        // deflater
        Deflater d = new Deflater();
  
        // get the text
        String pattern = "GeeksforGeeks", text = "";
  
        // generate the text
        for (int i = 0; i < 4; i++)
            text += pattern;
  
        // set the Input for deflator
        d.setInput(text.getBytes("UTF-8"));
  
        // finish
        d.finish();
  
        // output bytes
        byte output[] = new byte[1024];
  
        // compress the data
        int size = d.deflate(output);
  
        // compressed String
        System.out.println("Compressed String :"
                           + new String(output)
                           + "\n Size " + size);
  
        // original String
        System.out.println("Original String :" + text
                           + "\n Size " + text.length());
  
        // get the total number of
        // compressed bytes output so far
        System.out.println("Bytes Written value :"
                           + d.getBytesWritten());
  
        // end
        d.end();
    }
}

Producción:

Compressed String :x?sOM?.N?/r???q??
 Size 21
Original String :GeeksforGeeksGeeksforGeeksGeeksforGeeksGeeksforGeeks
 Size 52
Bytes Written value :21

Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/zip/Deflater.html#getBytesWritten()

Publicación traducida automáticamente

Artículo escrito por andrew1234 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *