Exemplo de método java.util.zip.CheckedInputStream.read ()

Descrição

o java.util.zip.CheckedInputStream.read(byte[] buf, int off, int len)método lê em uma matriz de bytes. Se len não for zero, o método bloqueia até que alguma entrada esteja disponível; caso contrário, nenhum byte é lido e 0 é retornado.

Declaração

A seguir está a declaração para java.util.zip.CheckedInputStream.read(byte[] buf, int off, int len) método.

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

Parâmetros

  • buf - o buffer no qual os dados são lidos.

  • off - o deslocamento inicial na matriz de destino b.

  • len - o número máximo de bytes lidos.

Devoluções

o número real de bytes lidos ou -1 se o final do fluxo for alcançado.

Exceções

  • NullPointerException - Se buf for nulo.

  • IndexOutOfBoundsException - Se off for negativo, len é negativo ou len é maior que buf.length - off.

  • IOException - se ocorreu um erro de E / S.

Pré-requisito

Crie um arquivo Hello.txt em D:> test > diretório com o seguinte conteúdo.

This is an example.

Exemplo

O exemplo a seguir mostra o uso do método java.util.zip.CheckedInputStream.read (byte [] buf, int off, int len).

package com.tutorialspoint;

import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.zip.Adler32;
import java.util.zip.CheckedInputStream;
import java.util.zip.CheckedOutputStream;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
import java.util.zip.ZipOutputStream;

public class CheckedInputStreamDemo {
   private static String SOURCE_FILE = "D:\\test\\Hello.txt";
   private static String TARGET_FILE = "D:\\test\\Hello.zip";

   public static void main(String[] args) {
      try {
 
         createZipFile();
 
         FileInputStream fin= new FileInputStream(TARGET_FILE);
         CheckedInputStream checksum = new CheckedInputStream(fin, new Adler32());
         byte[] buffer = new byte[1024];
         while(checksum.read(buffer, 0, buffer.length) >= 0){        
 
      } 

         System.out.println("Checksum: " + checksum.getChecksum().getValue());      
      } catch(IOException ioe) {
         System.out.println("IOException : " + ioe);
      }
   }
   
   private static void createZipFile() throws IOException{
      FileOutputStream fout = new FileOutputStream(TARGET_FILE);
      CheckedOutputStream checksum = new CheckedOutputStream(fout, new Adler32());
      ZipOutputStream zout = new ZipOutputStream(checksum);

      FileInputStream fin = new FileInputStream(SOURCE_FILE);
      zout.putNextEntry(new ZipEntry(SOURCE_FILE));
      int length;
      byte[] buffer = new byte[1024];
      while((length = fin.read(buffer)) > 0) {
         zout.write(buffer, 0, length);
      }

      zout.closeEntry();
      fin.close();
      zout.close();
   }
}

Vamos compilar e executar o programa acima, isso produzirá o seguinte resultado -

Checksum: 1400120861
Impressão