- java.util.zip 包类
- java.util.zip - 首页
- java.util.zip - Adler32
- java.util.zip - CheckedInputStream
- java.util.zip - CheckedOutputStream
- java.util.zip - CRC32
- java.util.zip - Deflater
- java.util.zip - DeflaterInputStream
- java.util.zip - DeflaterOutputStream
- java.util.zip - GZIPInputStream
- java.util.zip - GZIPOutputStream
- java.util.zip - Inflater
- java.util.zip - InflaterInputStream
- java.util.zip - InflaterOutputStream
- java.util.zip - ZipEntry
- java.util.zip - ZipFile
- java.util.zip - ZipInputStream
- java.util.zip - ZipOutputStream
- java.util.zip 包额外内容
- java.util.zip - 异常
- java.util.zip - 错误
- java.util.zip 有用资源
- java.util.zip - 快速指南
- java.util.zip - 有用资源
- java.util.zip - 讨论
java.util.zip.ZipInputStream.read() 方法示例
描述
java.util.zip.ZipInputStream.read(byte[] buf, int off, int len) 方法从当前 ZIP 条目读取数据到字节数组中。如果 len 不为零,则该方法会阻塞,直到有输入可用;否则,不会读取任何字节,并返回 0。
声明
以下是 java.util.zip.ZipInputStream.read(byte[] buf, int off, int len) 方法的声明。
public int read(byte[] buf, int off, int len) throws IOException
参数
buf − 读取数据到的缓冲区。
off − 目标数组 b 中的起始偏移量。
len − 读取的最大字节数。
返回值
实际读取的字节数,如果到达流的末尾则返回 -1。
异常
NullPointerException − 如果 buf 为 null。
IndexOutOfBoundsException − 如果 off 为负数,len 为负数,或 len 大于 buf.length - off。
ZipException − 如果发生 ZIP 文件错误。
IOException − 如果发生 I/O 错误。
先决条件
在 D:> test > 目录下创建一个名为 Hello.txt 的文件,内容如下。
This is an example.
示例
以下示例演示了 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();
}
}
}
让我们编译并运行上述程序,这将产生以下结果:
File: D:\test\Hello.txt Modified on 05/22/17 Zip file D:\test\Hello.txt extracted successfully.
javazip_zipinputstream.htm
广告