java解压缩zip、rar

简介: java解压缩zip、rar

解压缩zip

  1. 使用hutool工具包中ZipUtil工具类
<dependency>
    <groupId>cn.hutool</groupId>
    <artifactId>hutool-all</artifactId>
    <version>5.7.2</version>
</dependency>
// 参数是压缩包路径和编码
// GBK是为了解决中文解压缩乱码的问题
ZipUtil.unzip(f.getAbsolutePath(), Charset.forName("GBK"));
  1. 使用zip4j工具包
<dependency>
    <groupId>net.lingala.zip4j</groupId>
    <artifactId>zip4j</artifactId>
    <version>2.9.1</version>
</dependency>
ZipFile zipFile = new ZipFile(f.getAbsolutePath());
// 中文乱码处理
zipFile.setCharset(Charset.forName("GBK"));
File zdir = new File(f.getAbsolutePath().substring(0, f.getAbsolutePath().indexOf(".")));
if (!zdir.isDirectory()) {
    zdir.mkdir();
}
try {
  // 解压到指定文件夹
    zipFile.extractAll(zdir.getAbsolutePath());
} catch (ZipException e) {
    e.printStackTrace();
}

解压缩rar

  1. 使用junrar工具包
<dependency>
    <groupId>com.github.junrar</groupId>
    <artifactId>junrar</artifactId>
    <version>7.4.0</version>
</dependency>
File zdir = new File(f.getAbsolutePath().substring(0, f.getAbsolutePath().indexOf(".")));
if (!zdir.isDirectory()) {
    zdir.mkdir();
}
try {
    Junrar.extract(f.getAbsolutePath(), zdir.getAbsolutePath());
} catch (IOException e) {
    e.printStackTrace();
} catch (RarException e) {
    e.printStackTrace();
}
  1. 使用sevenzipjbinding
<dependency>
    <groupId>net.sf.sevenzipjbinding</groupId>
    <artifactId>sevenzipjbinding</artifactId>
    <version>16.02-2.01</version>
</dependency>
<dependency>
    <groupId>net.sf.sevenzipjbinding</groupId>
    <artifactId>sevenzipjbinding-all-platforms</artifactId>
    <version>16.02-2.01</version>
</dependency>
try {
   // f -  压缩文件
   RandomAccessFile randomAccessFile = new RandomAccessFile(f.getAbsolutePath(), "r");
   IInArchive archive = SevenZip.openInArchive(ArchiveFormat.RAR5,  new RandomAccessFileInStream(randomAccessFile));
   // 解压文件路径
   File zdir = new File( f.getAbsolutePath().substring(0,  f.getAbsolutePath() .indexOf(".")));
   if (!zdir.isDirectory()) {
       zdir.mkdir();
   }
   int[] in = new int[archive.getNumberOfItems()];
   for(int i=0;i<in.length;i++){
       in[i] = i;
   }
   archive.extract(in, false, new ExtractCallback(archive, zdir.getAbsolutePath()));
   archive.close();
   randomAccessFile.close();
} catch (FileNotFoundException | SevenZipException e) {
   e.printStackTrace();
} catch (IOException e) {
   e.printStackTrace();
}
private static class ExtractCallback implements IArchiveExtractCallback {
    private final IInArchive inArchive;
    private final String extractPath;
    public ExtractCallback(IInArchive inArchive, String extractPath) {
        this.inArchive = inArchive;
        if (!extractPath.endsWith("/") && !extractPath.endsWith("\\")) {
            extractPath += File.separator;
        }
        this.extractPath = extractPath;
    }
    @Override
    public void setTotal(long total) {
    }
    @Override
    public void setCompleted(long complete) {
    }
    @Override
    public ISequentialOutStream getStream(int index, ExtractAskMode extractAskMode) throws SevenZipException {
        return data -> {
            String filePath = inArchive.getStringProperty(index, PropID.PATH);
            FileOutputStream fos = null;
            try {
                File path = new File(extractPath + filePath);
                if(!path.getParentFile().exists()){
                    path.getParentFile().mkdirs();
                }
        if(!path.exists()){
            path.createNewFile();
        }
        fos = new FileOutputStream(path, true);
        fos.write(data);
            } catch (IOException e) {
        log.info("IOException while extracting " + filePath);
        } finally{
            try {
            if(fos != null){
            fos.flush();
            fos.close();
            }
        } catch (IOException e) {
            log.error("Could not close FileOutputStream", e);
        }
        }
        return data.length;
    };
    }
    @Override
    public void prepareOperation(ExtractAskMode extractAskMode) {
    }
    @Override
    public void setOperationResult(ExtractOperationResult extractOperationResult) {
    }
}


相关文章
|
27天前
|
存储 Java API
Java实现导出多个excel表打包到zip文件中,供客户端另存为窗口下载
Java实现导出多个excel表打包到zip文件中,供客户端另存为窗口下载
36 4
|
2月前
|
安全 Java Android开发
JavaWeb解压缩漏洞之ZipSlip与Zip炸弹
JavaWeb解压缩漏洞之ZipSlip与Zip炸弹
56 5
|
3月前
|
安全 Java Android开发
JavaWeb解压缩漏洞之ZipSlip与Zip炸弹
JavaWeb解压缩漏洞之ZipSlip与Zip炸弹
113 2
|
3月前
|
算法 Java
Java 压缩文件
在Java中压缩文件是一个常见的需求,通常可以通过使用Java自带的`java.util.zip`包来实现。这个包提供了`ZipOutputStream`类来创建ZIP格式的压缩文件。以下是一个简单的示例,展示了如何将多个文件压缩到一个ZIP文件中。 ### 示例:将多个文件压缩到一个ZIP文件中 ```java import java.io.*; import java.util.zip.ZipEntry; import java.util.zip.ZipOutputStream; public class ZipFilesExample { public static vo
|
4月前
|
Java 大数据 测试技术
Java对象头压缩---- 永久为Java应用“降本增效”
本文介绍了一下OpenJDK的最新技术,对象头压缩,来大幅优化Java对象的内存占用。
|
4月前
|
Java
Java SpringBoot 7z 压缩、解压
Java SpringBoot 7z 压缩、解压
72 1
|
4月前
|
存储 安全 算法
Java中防止压缩炸弹的技术分享
【8月更文挑战第17天】在软件开发和数据处理的日常工作中,我们经常会遇到各种压缩文件。然而,一种被称为“压缩炸弹”的恶意文件却给开发者带来了不小的困扰。压缩炸弹通过特殊设计的压缩算法,使得极小的文件在解压后能膨胀到异常巨大的体积,从而消耗大量系统资源甚至导致系统崩溃。本文将围绕“如何在Java中防止压缩炸弹”这一主题,分享一些实用的技术干货。
120 0
|
Java
Java 解压缩 Zip文件(在李兴华老师基础上优化)
Java 解压缩 Zip文件(在李兴华老师基础上优化)
405 0
Java 解压缩 Zip文件(在李兴华老师基础上优化)
|
11天前
|
Java 开发者
Java多线程编程中的常见误区与最佳实践####
本文深入剖析了Java多线程编程中开发者常遇到的几个典型误区,如对`start()`与`run()`方法的混淆使用、忽视线程安全问题、错误处理未同步的共享变量等,并针对这些问题提出了具体的解决方案和最佳实践。通过实例代码对比,直观展示了正确与错误的实现方式,旨在帮助读者构建更加健壮、高效的多线程应用程序。 ####
|
2天前
|
缓存 Java 开发者
Java多线程编程的陷阱与最佳实践####
本文深入探讨了Java多线程编程中常见的陷阱,如竞态条件、死锁和内存一致性错误,并提供了实用的避免策略。通过分析典型错误案例,本文旨在帮助开发者更好地理解和掌握多线程环境下的编程技巧,从而提升并发程序的稳定性和性能。 ####