Exemplo de método java.util.zip.ZipInputStream.read ()
Descrição
o java.util.zip.ZipInputStream.read(byte[] buf, int off, int len)método lê da entrada ZIP atual 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.ZipInputStream.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.
ZipException - se ocorreu um erro no arquivo ZIP.
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.ZipInputStream.read (byte [] buf, int off, int len).
package com.tutorialspoint;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Date;
import java.util.zip.Adler32;
import java.util.zip.CheckedOutputStream;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
import java.util.zip.ZipOutputStream;
public class ZipInputStreamDemo {
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();
readZipFile();
} 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);
ZipEntry zipEntry = new ZipEntry(SOURCE_FILE);
zout.putNextEntry(zipEntry);
int length;
byte[] buffer = new byte[1024];
while((length = fin.read(buffer)) > 0) {
zout.write(buffer, 0, length);
}
zout.closeEntry();
fin.close();
zout.close();
}
private static void readZipFile() throws IOException{
ZipInputStream zin = new ZipInputStream(new FileInputStream(TARGET_FILE));
ZipEntry entry;
while((entry = zin.getNextEntry())!=null){
System.out.printf("File: %s Modified on %TD %n",
entry.getName(), new Date(entry.getTime()));
extractFile(entry, zin);
System.out.printf("Zip file %s extracted successfully.", SOURCE_FILE);
zin.closeEntry();
}
zin.close();
}
private static void extractFile(final ZipEntry entry, ZipInputStream is)
throws IOException {
FileOutputStream fos = null;
try {
fos = new FileOutputStream(entry.getName());
final byte[] buf = new byte[1024];
int read = 0;
int length;
while ((length = is.read(buf, 0, buf.length)) >= 0) {
fos.write(buf, 0, length);
}
} catch (IOException ioex) {
fos.close();
}
}
}
Vamos compilar e executar o programa acima, isso produzirá o seguinte resultado -
File: D:\test\Hello.txt Modified on 05/22/17
Zip file D:\test\Hello.txt extracted successfully.
Impressão