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

本文介绍如何使用sevenzipjbinding库解压带有密码保护的压缩文件,包括导入库、设置参数及执行解压操作。
首先到sourceforge网站下载sevenzipjbinding压缩包
我下载的版本是sevenzipjbinding-4.65-1.04-rc-extr-only-AllWindows.zip
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();
                     }
                }
}

}

 

### 图像或文档中水印处理的技术方案 对于图像或文档中的水印处理,可以采用不同的方法和技术手段来实现去除或添加水印的功能。以下是针对这两种情况的具体技术解决方案。 #### 去除图像中的水印 为了有效去除图像上的水印,在实践中可利用智能修复技术来进行操作。该类技术的算法框架通常包括预处理、损伤检测、修复策略选择与执行以及后处理等步骤[^1]。具体而言: - **预处理**:此阶段涉及对含有水印的图像进行标准化和增强处理,以便更好地识别并定位水印区域。 - **损伤检测**:通过先进的图像处理技术和模式匹配算法准确定位图像上水印的位置及其边界范围。 - **修复策略选择与执行**:依据所检测到的水印特征选取合适的修复方式,比如基于纹理合成的方法或是更复杂的深度学习模型驱动的方式完成无痕移除工作。 - **后处理**:最后一步是对已去除了水印后的图像做进一步优化调整,确保最终输出质量达到预期标准。 ```python import cv2 from skimage.restoration import inpaint def remove_watermark(image_path, mask_path): image = cv2.imread(image_path) mask = cv2.imread(mask_path, 0) result = inpaint.inpaint_biharmonic(image, mask, multichannel=True) return result ``` #### 添加文档中的水印 当目标是在电子文档内嵌入不可见或可见形式的水印时,则需遵循特定的数据解析流程。例如,在处理OFD(Open Fixed-layout Document)格式文件时,首先要解析待加水印的目标文件,提取其中所有的目录名称及文件名,并深入分析其内部XML结构以获取必要的元数据信息[^4]。之后可以根据实际需求设计相应的逻辑用于生成个性化定制化的水印内容,并将其安全可靠地融入原始文档之中而不影响正常使用体验。 ```java public class WatermarkAdder { public static void addWaterMarkToDocument(String filePath) throws Exception{ // 解析 OFD 文件 File file = new File(filePath); // 提取所有文件夹名、文件名; String[] folderNames = extractFolderNames(file); String[] filenames = extractFilenames(file); // 解析 OFD 结构中 xml 文件字段,提取结构体及属性名 Map<String, Object> structureAndAttributes = parseXmlStructure(file); // 实现具体的水印添加逻辑... } } ```
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值