Java Jar 解压 crc,java.util.zip.ZipEntry.setCrc(long crc)方法示例

java.util.zip.ZipEntry.setCrc(long crc)方法设置未压缩条目数据的CRC-32校验和。

声明

以下是java.util.zip.ZipEntry.setCrc(long crc)方法的声明。

public void setCrc(long crc)

参数

crc - 指定的一介CRC-32值。

返回值

N/A

前提条件

在D:\test>目录下用以下内容创建一个文件Hello.txt。

This is an example.

示例

以下示例显示了java.util.zip.ZipEntry.setCrc(long crc)方法的用法。

package com.yiibai;

import java.io.FileInputStream;

import java.io.FileOutputStream;

import java.io.IOException;

import java.io.InputStream;

import java.util.Date;

import java.util.Enumeration;

import java.util.zip.CRC32;

import java.util.zip.ZipEntry;

import java.util.zip.ZipFile;

import java.util.zip.ZipOutputStream;

public class ZipEntryDemo {

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);

ZipOutputStream zout = new ZipOutputStream(fout);

FileInputStream fin = new FileInputStream(SOURCE_FILE);

byte[] buffer = new byte[1024];

fin.read(buffer, 0, buffer.length);

ZipEntry zipEntry = new ZipEntry(SOURCE_FILE);

CRC32 crc = new CRC32();

zipEntry.setSize((long) buffer.length);

crc.reset();

crc.update(buffer);

zipEntry.setCrc(crc.getValue());

zipEntry.setTime(System.currentTimeMillis());

zout.putNextEntry(zipEntry);

zout.write(buffer, 0, buffer.length);

zout.closeEntry();

fin.close();

zout.close();

}

private static void readZipFile() throws IOException{

final ZipFile file = new ZipFile(TARGET_FILE);

System.out.println("Iterating over zip file : " + TARGET_FILE);

try {

final Enumeration extends ZipEntry> entries = file.entries();

while (entries.hasMoreElements()) {

final ZipEntry entry = entries.nextElement();

System.out.printf("File: %s Size %d Modified on %TD %n",

entry.getName(), entry.getSize(),

new Date(entry.getTime()));

extractFile(entry, file.getInputStream(entry));

}

System.out.printf("Zip file %s extracted successfully.", SOURCE_FILE);

}

finally {

file.close();

}

}

private static void extractFile(final ZipEntry entry, InputStream 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();

}

}

}

编译并运行上面程序,将会产生以下结果 -

Iterating over zip file : D:\test\Hello.zip

File: D:\test\Hello.txt Size 1024 Modified on 05/20/17

Zip file D:\test\Hello.txt extracted successfully.

¥ 我要打赏

纠错/补充

收藏

加QQ群啦,易百教程官方技术学习群

注意:建议每个人选自己的技术方向加群,同一个QQ最多限加 3 个群。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值