java 解压与压缩文件夹的实例详解
java解压与压缩文件夹的实例详解
注意:JDK7支持设置编码设置编码格式zipFile,zipInputStream,zipOutputStream都增加了编码格式,如果是jdk1.6需要其他的包辅助
下面为自带jdk压缩文件夹代码:
publicvoiddozip(Stringsrcfile,Stringzipfile)throwsIOException{ Stringtemp=""; Filesrc=newFile(srcfile); FilezipFile=newFile(zipfile); //判断要压缩的文件存不存在 if(!src.exists()){ System.err.println("要压缩的文件不存在!"); System.exit(1); } //如果说压缩路径不存在,则创建 if(!zipFile.getParentFile().exists()){ zipFile.getParentFile().mkdirs(); //System.out.println("创建ok"); } //封装压缩的路径 BufferedOutputStreambos=newBufferedOutputStream(newFileOutputStream(zipfile)); //这里可以加入校验 //CheckedOutputStreamcos=newCheckedOutputStream(bos,newCRC32()); //还可以设置压缩格式,默认UTF-8 Charsetcharset=Charset.forName("GBK"); ZipOutputStreamzos=newZipOutputStream(bos,charset); zip(src,zos,temp); //关闭流 zos.flush(); zos.close(); System.out.println("压缩完成!"); System.out.println("压缩文件的位置是:"+zipfile); //System.out.println("检验和:"+cos.getChecksum().getValue()); } privatevoidzip(Filefile,ZipOutputStreamzos,Stringtemp) throwsIOException{ //如果不加"/"将会作为文件处理,空文件夹不需要读写操作 if(file.isDirectory()){ Stringstr=temp+file.getName()+"/"; zos.putNextEntry(newZipEntry(str)); File[]files=file.listFiles(); for(Filefile2:files){ zip(file2,zos,str); } }else{ //System.out.println("当前文件的父路径:"+temp); ZipFile(file,zos,temp); } } privatevoidZipFile(Filesrcfile,ZipOutputStreamzos,Stringtemp) throwsIOException{ //默认的等级压缩-1 //zos.setLevel(xxx); //封装待压缩文件 BufferedInputStreambis=newBufferedInputStream(newFileInputStream( srcfile)); zos.putNextEntry(newZipEntry(temp+srcfile.getName())); bytebuf[]=newbyte[1024]; intlen; while((len=bis.read(buf))!=-1){ zos.write(buf,0,len); } //按标准需要关闭当前条目,不写也行 zos.closeEntry(); bis.close(); }
下面为解压:
这里先说一下好压的解压规则:
1.如果解压到与压缩文件同名的文件夹,则直接解压
如果自定义了其他文件夹xxx,则先创建xxx,再放入解压后的文件夹
2.好压压缩的时候,是采用GBK格式的,所以在解压的时候,为了统一,采用GBK解压另外再说一下WINRAR,因为RAR压缩是申请了专利(商业软件),所以RAR压缩算法是不公开的,但是解压算法是有的,其压缩默认也是GBK格式的;
经过测试,发现,不管压缩的时候采用UTF-8还是GBK,解压的时候用GBK都可以正确解压!(具体原因还不清楚)
本java程序是直接解压到文件夹的,默认解压到与压缩文件同路径
如果解压编码有问题,则报错:java.lang.IllegalArgumentException:MALFORMED
如果压缩文件有密码:则报错:java.util.zip.ZipException:encryptedZIPentrynotsupporte
//方法1: publicvoidunZip(Stringzipfile)throwsIOException{ //检查是否是zip文件,并判断文件是否存在 checkFileName(zipfile); longstartTime=System.currentTimeMillis(); Filezfile=newFile(zipfile); //获取待解压文件的父路径 StringParent=zfile.getParent()+"/"; FileInputStreamfis=newFileInputStream(zfile); Charsetcharset=Charset.forName("GBK");//默认UTF-8 //CheckedInputStreamcis=newCheckedInputStream(fis,newCRC32()); ZipInputStreamzis=newZipInputStream(fis,charset);//输入源zip路径 ZipEntryentry=null; BufferedOutputStreambos=null; while((entry=zis.getNextEntry())!=null){ if(entry.isDirectory()){ FilefilePath=newFile(Parent+entry.getName()); //如果目录不存在,则创建 if(!filePath.exists()){ filePath.mkdirs(); } }else{ FileOutputStreamfos=newFileOutputStream(Parent+entry.getName()); bos=newBufferedOutputStream(fos); bytebuf[]=newbyte[1024]; intlen; while((len=zis.read(buf))!=-1){ bos.write(buf,0,len); } zis.closeEntry(); //关闭的时候会刷新 bos.close(); } } zis.close(); longendTime=System.currentTimeMillis(); System.out.println("解压完成!所需时间为:"+(endTime-startTime)+"ms"); //System.out.println("校验和:"+cis.getChecksum().getValue()); } privatevoidcheckFileName(Stringname){ //文件是否存在 if(!newFile(name).exists()){ System.err.println("要解压的文件不存在!"); System.exit(1); } //判断是否是zip文件 intindex=name.lastIndexOf("."); Stringstr=name.substring(index+1); if(!"zip".equalsIgnoreCase(str)){ System.err.println("不是zip文件,无法解压!"); System.exit(1); } }
方法2:
利用zipFile解压,方法跟ZipInputStream类似,都是连续取到Entry,然后再用Entry判断,听说zipFile内建了缓冲流,所以对于同一个文件解压多次效率比ZipInputStream高些
publicvoiddozip(Stringzipfile)throwsIOException{ checkFileName(zipfile); longstartTime=System.currentTimeMillis(); //获取待解压文件的父路径 Filezfile=newFile(zipfile); StringParent=zfile.getParent()+"/"; //设置,默认是UTF-8 Charsetcharset=Charset.forName("GBK"); ZipFilezip=newZipFile(zipfile,charset); ZipEntryentry=null; //封装解压后的路径 BufferedOutputStreambos=null; //封装待解压文件路径 BufferedInputStreambis=null; Enumerationenums=(Enumeration )zip.entries(); while(enums.hasMoreElements()){ entry=enums.nextElement(); if(entry.isDirectory()){ FilefilePath=newFile(Parent+entry.getName()); //如果目录不存在,则创建 if(!filePath.exists()){ filePath.mkdirs(); } }else{ bos=newBufferedOutputStream(newFileOutputStream(Parent+entry.getName())); //获取条目流 bis=newBufferedInputStream(zip.getInputStream(entry)); bytebuf[]=newbyte[1024]; intlen; while((len=bis.read(buf))!=-1){ bos.write(buf,0,len); } bos.close(); } } bis.close(); zip.close(); System.out.println("解压后的路径是:"+Parent); longendTime=System.currentTimeMillis(); System.out.println("解压成功,所需时间为:"+(endTime-startTime)+"ms"); } privatevoidcheckFileName(Stringname){ //文件是否存在 if(!newFile(name).exists()){ System.err.println("要解压的文件不存在!"); System.exit(1); } //判断是否是zip文件 intindex=name.lastIndexOf("."); Stringstr=name.substring(index+1); if(!"zip".equalsIgnoreCase(str)){ System.err.println("不是zip文件,无法解压!"); System.exit(1); } }
如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!