使用Apache Commons Compress进行文件压缩
package com.app.common.util.zip;
import java.io.*;
import org.apache.commons.compress.archivers.zip.ZipArchiveEntry;
import org.apache.commons.compress.archivers.zip.ZipArchiveOutputStream;
import org.apache.commons.compress.utils.IOUtils;
/**
* 文件压缩抽象类
* @author Administrator
*
*/
public abstract class AbstractZipHandler {
public static final String ZIP_SUFFIX = ".zip";
public static final String DEF_DECODING = "GBK";
private File inputFile;
private File outFile;
private FileFilter fileFilter;
private ZipArchiveOutputStream zipOutput;
private String encoding;
public AbstractZipHandler(File inputFile, File outFile) throws IOException {
if (null == inputFile || !inputFile.exists()|| !inputFile.isDirectory() || !inputFile.canRead()) {
throw new IllegalArgumentException("The inputFile must be directory and can read.");
}
if (false == (outFile.getCanonicalPath().toLowerCase().endsWith(ZIP_SUFFIX))) {
throw new IllegalArgumentException("The outFile must be zip file.");
}
this.inputFile = inputFile;
this.outFile = outFile;
zipOutput = new ZipArchiveOutputStream(outFile);
zipOutput.setEncoding(this.getEncoding());
}
public void zip() {
File[] files = this.getFileFilter() == null ? inputFile.listFiles():inputFile.listFiles(this.getFileFilter());
try {
for (File file : files) {
zipFile(file);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
if (null != zipOutput) {
try {
zipOutput.close();
} catch (IOException e) {
}
zipOutput = null;
}
}
}
private void zipFile(File file) throws IOException {
if (file.isDirectory()) {
zipOutput.putArchiveEntry(new ZipArchiveEntry(this.getEntryName(
inputFile, file) + "/"));
zipOutput.closeArchiveEntry();
for (File f : this.getFileFilter() == null ? file.listFiles()
: file.listFiles(this.getFileFilter())) {
zipFile(f);
}
} else {
zipOutput.putArchiveEntry(new ZipArchiveEntry(this.getEntryName(
inputFile, file)));
IOUtils.copy(new FileInputStream(file), zipOutput);
zipOutput.closeArchiveEntry();
}
}
public String getEntryName(File inputFile, File entryFile)
throws IOException {
String result = null;
String inputFileParentPath = inputFile.getParentFile()
.getCanonicalPath();
String entryFilePath = entryFile.getCanonicalPath();
result = entryFilePath.substring(entryFilePath
.indexOf(inputFileParentPath) + inputFileParentPath.length());
return result;
}
public FileFilter getFileFilter() {
return fileFilter;
}
public void setFileFilter(FileFilter fileFilter) {
this.fileFilter = fileFilter;
}
public String getEncoding() {
return null == encoding ? DEF_DECODING : encoding;
}
public void setEncoding(String encoding) {
this.encoding = encoding;
}
}
package com.app.common.util.zip;
import java.io.File;
import java.io.IOException;
/**
* 文件压缩默认实现类
* @author Administrator
*
*/
public class DefZipHandler extends AbstractZipHandler {
public DefZipHandler(File inputFile, File outFile) throws IOException {
super(inputFile, outFile);
}
}
package com.app.common.util.zip;
import java.io.File;
import java.io.FileFilter;
import java.io.IOException;
/**
* 文件压缩测试类
* @author Administrator
*
*/
public class TestDefZipHandler {
public static void main(String[] args) throws IOException {
File inputFile = new File("c:/test/");
File outFile = new File("c:/test.zip");
AbstractZipHandler handler = new DefZipHandler(inputFile, outFile);
handler.setFileFilter(new FileFilter() {
@Override
public boolean accept(File f) {
return true;
}
});
handler.zip();
System.out.println("finished...");
}
}
分享到:
相关推荐
使用 Commons Compress 进行文件压缩和解压缩的基本步骤如下: 1. 引入库:首先,在项目中引入 Commons Compress 的依赖。如果是 Maven 项目,可以在 pom.xml 文件中添加相应的依赖条目。 2. 创建流:根据需要的...
以下是使用Apache Commons Compress进行压缩和解压缩的基本步骤: **压缩文件示例**: ```java import org.apache.commons.compress.archivers.zip.ZipArchiveEntry; import org.apache.commons.compress.archivers...
总的来说,Apache Commons Compress库提供了一种方便的方式来处理tar格式的压缩文件,使得Java开发者能够轻松地进行文件和目录的压缩操作。结合`TarArchiveEntry`,我们可以灵活地控制归档的内容和结构。通过`...
首先,让我们从`TestCompress.java`这个文件名称推测,这可能是一个测试类,用于演示如何使用Apache Commons Compress库进行文件压缩和解压。在实际编程中,我们通常会创建这样的测试类来验证库的功能。 使用Apache...
在本示例中,我们将深入探讨如何使用Apache Commons Compress库来创建tar压缩文件,特别是针对文件夹的操作。`TarArchiveEntry`是该库中的一个重要类,它代表了tar归档中的一个条目或条目集合。 首先,我们需要理解...
Apache Commons Compress是一款由Apache软件基金会开发的Java库,它为各种不同的压缩格式提供了一致的API,使得Java开发者能够方便地在程序中处理各种压缩文件。这个库包含的版本是1.13,对应的压缩文件名为`commons...
[毕业设计]JAVA利用Apache Commons Compress库的文件压缩与解压缩应用(源代码+论文)
在使用Apache Commons Compress处理ZIP文件时,开发者可以使用`ZipFile`类来打开和读取ZIP文件,`ZipOutputStream`来创建新的ZIP文件或向现有ZIP文件添加内容。`ZipEntry`表示ZIP文件中的单个条目,可以获取或设置其...
apache.commons.compress 第三方开源软件。能解压,压缩文件。里面包括commons-compress-1.9、commons-compress-1.2.1的版本。 当遇到这种错误,应该重点关注Caused by:后面的内容 Caused by:xxx Unsupported major....
2. **使用API**:然后,可以使用`org.apache.commons.compress`包下的类和方法进行操作。例如,如果要解压一个ZIP文件,可以使用`ArchiverManager`和`ZipArchiveInputStream`: ```java import org.apache....
这个库是由Apache软件基金会开发的,是Apache Commons项目的一部分,旨在提供一种统一的方式来处理各种压缩文件格式,简化了在Java应用程序中进行文件压缩和解压缩的工作。 在Java中,如果没有这样的库,开发者需要...
apache-common-compress不提供解压RAR文件的方法,压缩包内还有另一个压缩包,那个包就是压缩/解压缩RAR文件用的,需要依赖一个公共包,需要依赖的包在压缩文件的lib文件夹下。此压缩包内含源码、开发包,但是没找到...
7. **使用示例**:下面是一个简单的使用Apache Commons Compress库进行Gzip压缩的Java代码示例: ```java import org.apache.commons.compress.compressors.gzip.GzipCompressorOutputStream; try ...
现在我们详细探讨一下Apache Commons Compress库以及如何使用它进行文件的压缩和解压缩操作。 首先,Apache Commons Compress库的核心在于其提供了多种压缩算法的抽象,使得开发者可以方便地处理各种格式的压缩文件...
这个压缩包“基于Java的实例源码-文件压缩解压缩包 Commons Compress.zip”包含了一些使用Apache Commons Compress库进行文件压缩和解压缩操作的示例代码。 Apache Commons Compress库支持多种压缩格式,如7z、AR、...
开发者可以通过API轻松地在Android应用中实现ZIP文件的压缩和解压缩,例如,将项目资源或用户数据打包成ZIP文件进行存储或传输。 2. TAR格式:TAR是一种古老的档案格式,主要用于归档,它可以将多个文件和目录组合...
在Java环境中,Apache Commons Compress库提供了API,使得开发者可以轻松地对ZIP文件进行压缩和解压缩。 对于中文文件名的支持,这是一个重要的功能,因为许多应用和系统需要处理包含非英文字符的文件名。在早期,...
Commons Compress库是Apache软件基金会开发的一个开源项目,它的主要目标是提供一个统一的API来处理各种不同的压缩格式。在给定的"commons-compress-1.18-bin" jar包中,包含了这个库的可执行版本,适用于Java平台。...
在本文中,我们将深入探讨如何使用Apache Commons Compress进行文件的压缩和解压缩。 首先,要使用Commons Compress库,我们需要将其添加到项目的依赖管理中。如果你的项目是Maven项目,可以在pom.xml文件中添加...
以上代码展示了如何使用Apache Commons Compress库进行RAR文件的压缩和解压。请注意,实际应用中需要考虑异常处理和资源管理,以确保程序的健壮性和效率。此外,RAR格式的某些高级特性,如密码保护、多卷RAR等,可能...