使用org.apache.tools.zip包来压缩解压缩文件。
java 代码
- import java.io.File;
- import java.io.FileInputStream;
- import java.io.FileOutputStream;
- import java.io.IOException;
- import java.io.InputStream;
- import java.util.Enumeration;
- import org.apache.tools.zip.ZipEntry;
- import org.apache.tools.zip.ZipFile;
- import org.apache.tools.zip.ZipOutputStream;
-
- public class CompressFile {
- private static CompressFile instance = new CompressFile();
-
- private CompressFile() {
- }
-
- public static CompressFile getInstance() {
- return instance;
- }
-
- public synchronized void zip(String inputFilename, String zipFilename)
- throws IOException {
- zip(new File(inputFilename), zipFilename);
- }
-
- public synchronized void zip(File inputFile, String zipFilename) throws IOException {
- ZipOutputStream out = new ZipOutputStream(new FileOutputStream(
- zipFilename));
-
- try {
- zip(inputFile, out, "");
- } catch (IOException e) {
- throw e;
- } finally {
- out.close();
- }
- }
-
- private synchronized void zip(File inputFile, ZipOutputStream out, String base)
- throws IOException {
- if (inputFile.isDirectory()) {
- File[] inputFiles = inputFile.listFiles();
- out.putNextEntry(new ZipEntry(base + "/"));
- base = base.length() == 0 ? "" : base + "/";
- for (int i = 0; i < inputFiles.length; i++) {
- zip(inputFiles[i], out, base + inputFiles[i].getName());
- }
-
- } else {
- if (base.length() > 0) {
- out.putNextEntry(new ZipEntry(base));
- } else {
- out.putNextEntry(new ZipEntry(inputFile.getName()));
- }
-
- FileInputStream in = new FileInputStream(inputFile);
- try {
- int c;
- byte[] by = new byte[BUFFEREDSIZE];
- while ((c = in.read(by)) != -1) {
- out.write(by, 0, c);
- }
- } catch (IOException e) {
- throw e;
- } finally {
- in.close();
- }
- }
- }
-
- public synchronized void unzip(String zipFilename, String outputDirectory)
- throws IOException {
- File outFile = new File(outputDirectory);
- if (!outFile.exists()) {
- outFile.mkdirs();
- }
-
- ZipFile zipFile = new ZipFile(zipFilename);
- Enumeration en = zipFile.getEntries();
- ZipEntry zipEntry = null;
- while (en.hasMoreElements()) {
- zipEntry = (ZipEntry) en.nextElement();
- if (zipEntry.isDirectory()) {
-
- String dirName = zipEntry.getName();
- dirName = dirName.substring(0, dirName.length() - 1);
-
- File f = new File(outFile.getPath() + File.separator + dirName);
- f.mkdirs();
-
- } else {
-
- File f = new File(outFile.getPath() + File.separator
- + zipEntry.getName());
- f.createNewFile();
- InputStream in = zipFile.getInputStream(zipEntry);
- FileOutputStream out = new FileOutputStream(f);
- try {
- int c;
- byte[] by = new byte[BUFFEREDSIZE];
- while ((c = in.read(by)) != -1) {
- out.write(by, 0, c);
- }
-
- } catch (IOException e) {
- throw e;
- } finally {
- out.close();
- in.close();
- }
- }
- }
- }
-
- private static final int BUFFEREDSIZE = 1024;
-
- public static void main(String[] args) {
- CompressFile bean = new CompressFile();
- try {
- bean.zip("d:/temp", "d:/test.zip");
-
- bean.unzip("d:/test.zip", "d:/out/temp");
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- }
分享到:
相关推荐
在Java编程语言中,文件的压缩与解压缩是常见的数据处理操作,特别是在数据传输、存储优化和备份场景中。本实践项目围绕这个主题展开,包括源代码和相关的论文,为学习者提供了深入理解和应用Java压缩库的机会。以下...
(Java毕业设计)JAVA文件压缩与解压缩实践(Java毕业设计)JAVA文件压缩与解压缩实践(Java毕业设计)JAVA文件压缩与解压缩实践(Java毕业设计)JAVA文件压缩与解压缩实践(Java毕业设计)JAVA文件压缩与解压缩实践(Java毕业...
JAVA文件压缩与解压缩实践(源代码).zipJAVA文件压缩与解压缩实践(源代码).zipJAVA文件压缩与解压缩实践(源代码).zipJAVA文件压缩与解压缩实践(源代码).zipJAVA文件压缩与解压缩实践(源代码).zipJAVA文件压缩与解压缩...
JAVA文件压缩与解压缩实践(源代码+论文) JAVA文件压缩与解压缩实践(源代码+论文) JAVA文件压缩与解压缩实践(源代码+论文) JAVA文件压缩与解压缩实践(源代码+论文) JAVA文件压缩与解压缩实践(源代码+论文) JAVA文件...
JAVA文件压缩与解压缩实践(源代码+LW)JAVA文件压缩与解压缩实践(源代码+LW)JAVA文件压缩与解压缩实践(源代码+LW)JAVA文件压缩与解压缩实践(源代码+LW)JAVA文件压缩与解压缩实践(源代码+LW)JAVA文件压缩与解压缩实践...
JAVA文件压缩与解压缩实践(源代码+论文)JAVA文件压缩与解压缩实践(源代码+论文)JAVA文件压缩与解压缩实践(源代码+论文)JAVA文件压缩与解压缩实践(源代码+论文)JAVA文件压缩与解压缩实践(源代码+论文)JAVA文件压缩与...
Java自动解压缩文件是编程领域中的一个重要话题,尤其是在服务器端应用中,经常需要处理上传的压缩文件并进行解压操作。Java提供了丰富的API来支持这一功能,主要涉及到`java.util.zip`包中的类,如`ZipInputStream`...
java毕业设计——java文件压缩与解压缩实践设计与开发(源代码+论文).zip java毕业设计——java文件压缩与解压缩实践设计与开发(源代码+论文).zip java毕业设计——java文件压缩与解压缩实践设计与开发(源代码+论文)....
3. **解压缩文件**: `ZipInputStream`可以用来读取和解压缩ZIP文件。创建`ZipInputStream`,然后循环读取每个`ZipEntry`,创建对应的文件或目录,并将数据写入。 4. **RAR文件处理**: 对于RAR格式,Java标准库没有...
3. **解压缩文件** 解压ZIP文件则需要一个`ZipInputStream`实例,它包装在一个`FileInputStream`中,指向ZIP文件。通过调用`getNextEntry`方法,你可以逐个访问ZIP文件中的每个条目,然后创建相应的文件或目录,将...
Java实现压缩解压缩文件和文件夹(附源码) zip unzip 压缩 解压缩
在Java编程环境中,处理文件的压缩与解压缩是一项常见的任务,尤其在数据传输、存档或备份场景下。本主题将深入探讨如何使用Java来创建一个文件解压缩工具箱,特别关注支持ZIP和RAR格式,并解决中文乱码问题。首先,...
在Java编程语言中,解压缩ZIP文件是一项常见的任务,特别是在处理数据传输、文件打包和部署等场景下。本文将深入探讨如何使用Java API来解压缩ZIP文件,包括基本概念、核心类库以及具体实现步骤。 ZIP文件是一种...
ame()); tOut.putArchiveEntry(tarEntry);...通过引入该库,我们可以轻松地在 Java 程序中实现文件和文件夹的压缩与解压缩功能。在实际开发中,注意错误处理、资源管理以及安全性等方面,以确保程序的健壮性和安全性。
- **错误处理和验证**:工具类应该包含了错误处理机制,如处理文件不存在、权限不足或压缩文件损坏等情况。同时,解压缩后,可能会通过比较原始文件和解压缩后的文件哈希值来验证数据一致性。 - **API设计**:为了...