日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

java怎么调用7zip进行压缩_JAVA使用7-zip解压缩带密码的Zip文件(非Proccess方法)...

發布時間:2024/7/5 编程问答 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 java怎么调用7zip进行压缩_JAVA使用7-zip解压缩带密码的Zip文件(非Proccess方法)... 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

首先到sourceforge網站下載sevenzipjbinding壓縮包

我下載的版本是sevenzipjbinding-4.65-1.04-rc-extr-only-AllWindows.zip

publicvoidunzipDirWithPassword( final String sourceZipFile ,

final String destinationDir , final String password ){

RandomAccessFile randomAccessFile=null;

ISevenZipInArchive inArchive=null;try{

randomAccessFile=newRandomAccessFile(sourceZipFile,"r");

inArchive=SevenZip.openInArchive(null,//autodetect archive typenewRandomAccessFileInStream(randomAccessFile));//Getting simple interface of the archive inArchiveISimpleInArchive simpleInArchive=inArchive.getSimpleInterface();for(final ISimpleInArchiveItem item : simpleInArchive.getArchiveItems()){

finalint[] hash=newint[] {0};if(!item.isFolder()){

ExtractOperationResult result;

result=item.extractSlow(newISequentialOutStream(){publicintwrite(finalbyte[] 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=newFile(path);if(!folderExisting.exists())newFile(path).mkdirs();

}if(!newFile(destinationDir+File.separator+item.getPath()).exists()){newFile(destinationDir).createNewFile();

}

OutputStreamout=newFileOutputStream(destinationDir+File.separator+item.getPath());out.write(data);out.close();

}catch( Exception e ){

e.printStackTrace();

}

hash[0]|=Arrays.hashCode(data);returndata.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();

}

}

}

總結

以上是生活随笔為你收集整理的java怎么调用7zip进行压缩_JAVA使用7-zip解压缩带密码的Zip文件(非Proccess方法)...的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。