JAVA使用7-zip解压缩带密码的Zip文件(非Proccess方法)

首先到sourceforge网站下载sevenzipjbinding压缩包
我下载的版本是sevenzipjbinding-4.65-1.04-rc-extr-only-AllWindows.zip
下载地址如下:
https://sourceforge.net/projects/sevenzipjbind/files/7-Zip-JBinding/4.65-1.04rc-extr-only/sevenzipjbinding-4.65-1.04-rc-extr-only-AllWindows.zip/download
编写代码如下:

public void unzipDirWithPassword( final String sourceZipFile ,
            final String destinationDir , final String password ){
           RandomAccessFile randomAccessFile = null;
           ISevenZipInArchive inArchive = null;
           try{
              randomAccessFile = new RandomAccessFile(sourceZipFile, "r");
              inArchive = SevenZip.openInArchive(null, // autodetect archive type
              new RandomAccessFileInStream(randomAccessFile));
             
              // Getting simple interface of the archive inArchive
              ISimpleInArchive simpleInArchive = inArchive.getSimpleInterface();
             
              for (final ISimpleInArchiveItem item : simpleInArchive.getArchiveItems()){
                  final int[] hash = new int[] { 0 };
                  if (!item.isFolder()){
                      ExtractOperationResult result;
                      result = item.extractSlow(new ISequentialOutStream(){
                            public int write(final byte[] data) throws SevenZipException{
                                  try{
                                        if(item.getPath().indexOf(File.separator)>0){
                                            String path = destinationDir+File.separator+item.getPath(). substring(0,item.getPath().lastIndexOf(File.separator));
                                            File folderExisting = new File(path);
                                            if (!folderExisting.exists())
                                                 new File(path).mkdirs();
                                        }
                                        if(!new File(destinationDir + File.separator+item.getPath()).exists()){
                                            new File(destinationDir).createNewFile();
                                        }
                                        OutputStream out = new FileOutputStream(destinationDir+ File.separator+item.getPath());
                                        out.write(data);
                                        out.close();
                                   }catch( Exception e ){
                                        e.printStackTrace();
                                   }
                                   hash[0] |= Arrays.hashCode(data);
                                   return data.length; // Return amount of proceed data
                           }
                       },password); /// password.
                       if (result == ExtractOperationResult.OK){
                           System.out.println(String.format("%9X | %s",
                                       hash[0], item.getPath()));
                       }else{
                           System.err.println("Error extracting item: " + result);
                       }
                  }
              }
           } catch (Exception e){
                e.printStackTrace();
           } finally {
                if (inArchive != null){
                    try {
                       inArchive.close();
                    } catch (SevenZipException e){
                       System.err.println("Error closing archive: " + e);
                       e.printStackTrace();
                    }
                }
                if (randomAccessFile != null) {
                     try{
                         randomAccessFile.close();
                     } catch (IOException e){
                         System.err.println("Error closing file: " + e);
                         e.printStackTrace();
                     }
                }
           }
    }

 特别提示:压缩文件的文件如果大小为0,则解压缩不出来文件

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
压缩文件方法方法需要引用zip4j的jar文件 单个文件、多个文件压缩 /** * 使用给定密码压缩指定文件文件夹到指定位置. * * dest可传最终压缩文件存放的绝对路径,也可以传存放目录,也可以传null或者"". * 如果传null或者""则将压缩文件存放在当前目录,即跟源文件同目录,压缩文件名取源文件名,以.zip为后缀; * 如果以路径分隔符(File.separator)结尾,则视为目录,压缩文件名取源文件名,以.zip为后缀,否则视为文件名. * @param src 要压缩文件文件夹路径 * @param dest 压缩文件存放路径 * @param isCreateDir 是否在压缩文件里创建目录,仅在压缩文件为目录时有效. * 如果为false,将直接压缩目录下文件压缩文件. * @param passwd 压缩使用密码 * @return 最终的压缩文件存放的绝对路径,如果为null则说明压缩失败. */ 方法详细见文件! 可选择文件list压缩 /** * 使用给定密码压缩指定文件list * dest可传最终压缩文件存放的绝对路径,也可以传存放目录,也可以传null或者"". * 如果传null或者""则将压缩文件存放在当前目录,即跟源文件同目录,压缩文件名取源文件名,以.zip为后缀; * 如果以路径分隔符(File.separator)结尾,则视为目录,压缩文件名取源文件名,以.zip为后缀,否则视为文件名. * @param src 要压缩文件集合 * @param dest 压缩文件存放路径 * @param isCreateDir 是否在压缩文件里创建目录,仅在压缩文件为目录时有效. * 如果为false,将直接压缩目录下文件压缩文件. * @param passwd 压缩使用密码 * @return 最终的压缩文件存放的绝对路径,如果为null则说明压缩失败. */ 方法详细见文件压 /** * 使用给定密码压指定的ZIP压缩文件到指定目录 * * 如果指定目录不存在,可以自动创建,不合法的路径将导致异常被抛出 * @param zipFile 指定的ZIP压缩文件 * @param dest 压目录 * @param passwd ZIP文件密码 * @return 压后文件数组 * @throws ZipException 压缩文件有损坏或者压缩失败抛出 */ 方法详细见文件! 一个简单的demo 欢迎大家指点,一起提升

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值