使用commons-compress操作zip文件(压缩和解压缩)

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

使⽤commons-compress操作zip⽂件(压缩和解压缩) Apache Commons Compress是⼀个压缩、解压缩⽂件的类库。

可以操作ar, cpio, Unix dump, tar, zip, gzip, XZ, Pack200 and bzip2格式的⽂件,功能⽐较强⼤。

在这⾥写两个⽤Commons Compress把⽂件压缩成zip和从zip解压缩的⽅法。

直接贴上⼯具类代码:
package cn.luxh.utils;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import press.archivers.ArchiveEntry;
import press.archivers.zip.Zip64Mode;
import press.archivers.zip.ZipArchiveEntry;
import press.archivers.zip.ZipArchiveInputStream;
import press.archivers.zip.ZipArchiveOutputStream;
/**
* Zip⽂件⼯具类
* @author Luxh
*/
public class ZipFileUtil {
/**
* 把⽂件压缩成zip格式
* @param files 需要压缩的⽂件
* @param zipFilePath 压缩后的zip⽂件路径 ,如"D:/test/aa.zip";
*/
public static void compressFiles2Zip(File[] files,String zipFilePath) {
if(files != null && files.length >0) {
if(isEndsWithZip(zipFilePath)) {
ZipArchiveOutputStream zaos = null;
try {
File zipFile = new File(zipFilePath);
zaos = new ZipArchiveOutputStream(zipFile);
//Use Zip64 extensions for all entries where they are required
zaos.setUseZip64(Zip64Mode.AsNeeded);
//将每个⽂件⽤ZipArchiveEntry封装
//再⽤ZipArchiveOutputStream写到压缩⽂件中
for(File file : files) {
if(file != null) {
ZipArchiveEntry zipArchiveEntry = new ZipArchiveEntry(file,file.getName());
zaos.putArchiveEntry(zipArchiveEntry);
InputStream is = null;
try {
is = new BufferedInputStream(new FileInputStream(file));
byte[] buffer = new byte[1024 * 5];
int len = -1;
while((len = is.read(buffer)) != -1) {
//把缓冲区的字节写⼊到ZipArchiveEntry
zaos.write(buffer, 0, len);
}
//Writes all necessary data for this entry.
zaos.closeArchiveEntry();
}catch(Exception e) {
throw new RuntimeException(e);
}finally {
if(is != null)
is.close();
}
}
}
zaos.finish();
}catch(Exception e){
throw new RuntimeException(e);
}finally {
try {
if(zaos != null) {
zaos.close();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}
}
}
/**
* 把zip⽂件解压到指定的⽂件夹
* @param zipFilePath zip⽂件路径, 如 "D:/test/aa.zip"
* @param saveFileDir 解压后的⽂件存放路径, 如"D:/test/"
*/
public static void decompressZip(String zipFilePath,String saveFileDir) { if(isEndsWithZip(zipFilePath)) {
File file = new File(zipFilePath);
if(file.exists()) {
InputStream is = null;
//can read Zip archives
ZipArchiveInputStream zais = null;
try {
is = new FileInputStream(file);
zais = new ZipArchiveInputStream(is);
ArchiveEntry archiveEntry = null;
//把zip包中的每个⽂件读取出来
//然后把⽂件写到指定的⽂件夹
while((archiveEntry = zais.getNextEntry()) != null) {
//获取⽂件名
String entryFileName = archiveEntry.getName();
//构造解压出来的⽂件存放路径
String entryFilePath = saveFileDir + entryFileName;
byte[] content = new byte[(int) archiveEntry.getSize()];
zais.read(content);
OutputStream os = null;
try {
//把解压出来的⽂件写到指定路径
File entryFile = new File(entryFilePath);
os = new BufferedOutputStream(new FileOutputStream(entryFile)); os.write(content);
}catch(IOException e) {
throw new IOException(e);
}finally {
if(os != null) {
os.flush();
os.close();
}
}
}
}catch(Exception e) {
throw new RuntimeException(e);
}finally {
try {
if(zais != null) {
zais.close();
}
if(is != null) {
is.close();
}
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}
}
}
/**
* 判断⽂件名是否以.zip为后缀
* @param fileName 需要判断的⽂件名
* @return 是zip⽂件返回true,否则返回false
*/
public static boolean isEndsWithZip(String fileName) {
boolean flag = false;
if(fileName != null && !"".equals(fileName.trim())) {
if(fileName.endsWith(".ZIP")||fileName.endsWith(".zip")){
flag = true;
}
}
return flag;
}
再来测试⼀下:
package cn.luxh.test;
import java.io.File;
import org.junit.Test;
import cn.luxh.utils.ZipFileUtil;
/**
* 测试ZipFileUtil的压缩和解压缩⽅法
* @author Luxh
*/
public class ZipFileUtilTest {
@Test
public void testCompressFiles2Zip() {
//存放待压缩⽂件的⽬录
File srcFile = new File("D:/test");
//压缩后的zip⽂件路径
String zipFilePath = "d:/test2/test.zip";
if(srcFile.exists()) {
File[] files = srcFile.listFiles();
pressFiles2Zip(files, zipFilePath); }
}
@Test
public void testDecompressZip() {
//压缩包所在路径
String zipFilePath = "d:/test2/test.zip";
//解压后的⽂件存放⽬录
String saveFileDir = "d:/test2/";
//调⽤解压⽅法
ZipFileUtil.decompressZip(zipFilePath, saveFileDir); }
}。

相关文档
最新文档