java jzip_java实现文件zip压缩或者解压缩

本文介绍了一个使用Java实现的文件压缩与解压缩的方法。通过示例代码展示了如何利用Java标准库中的`ZipOutputStream`和`ZipFile`来创建ZIP压缩文件及解压缩ZIP文件到指定目录。
摘要由CSDN通过智能技术生成

packagecom.test;importjava.io.*;importjava.util.*;importjava.util.zip.ZipOutputStream;importjava.util.zip.ZipEntry;importjava.util.zip.ZipFile;publicclassTestZip {publicTestZip() {

}/*** 压缩文件

*

*@paramsrcfile

*            File[] 需要压缩的文件列表

*@paramzipfile

*            File 压缩后的文件*/publicstaticvoidZipFiles(java.io.File[] srcfile, java.io.File zipfile) {byte[] buf=newbyte[1024];try{//Create the ZIP fileZipOutputStream out=newZipOutputStream(newFileOutputStream(

zipfile));//Compress the filesfor(inti=0; i

FileInputStream in=newFileInputStream(srcfile[i]);//Add ZIP entry to output stream.out.putNextEntry(newZipEntry(srcfile[i].getName()));//Transfer bytes from the file to the ZIP fileintlen;while((len=in.read(buf))>0) {

out.write(buf,0, len);

}//Complete the entryout.closeEntry();

in.close();

}//Complete the ZIP fileout.close();

System.out.println("压缩完成.");

}catch(IOException e) {

e.printStackTrace();

}

}/*** 解压缩

*

*@paramzipfile

*            File 需要解压缩的文件

*@paramdescDir

*            String 解压后的目标目录*/publicstaticvoidUnZipFiles(java.io.File zipfile, String descDir) {try{//Open the ZIP fileZipFile zf=newZipFile(zipfile);for(Enumeration entries=zf.entries(); entries.hasMoreElements();) {//Get the entry nameZipEntry entry=((ZipEntry) entries.nextElement());

String zipEntryName=entry.getName();

InputStream in=zf.getInputStream(entry);

OutputStream out=newFileOutputStream(descDir+zipEntryName);byte[] buf1=newbyte[1024];intlen;while((len=in.read(buf1))>0) {

out.write(buf1,0, len);

}//Close the file and streamin.close();

out.close();

System.out.println("解压缩完成.");

}

}catch(IOException e) {

e.printStackTrace();

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值