1. <span style="font-size:18px;">/**
  2. * lsz
  3. */
  4. public final class ZipUtil {
  5. /**
  6. * 解压zip文件
  7. * @param unZipfile
  8. * @param destFile
  9. */
  10. public static void unZip(String unZipfile, String destFile) {
  11. FileOutputStream fileOut;
  12. File file;
  13. InputStream inputStream;
  14. byte[]   buf = new byte[1024*4];
  15. try {
  16. //生成一个zip的文件
  17. ZipFile   zipFile = new ZipFile(unZipfile, "GBK");
  18. //遍历zipFile中所有的实体,并把他们解压出来
  19. for (@SuppressWarnings("unchecked")
  20. Enumeration<ZipEntry> entries = zipFile.getEntries(); entries
  21. .hasMoreElements();) {
  22. ZipEntry entry =  entries.nextElement();
  23. //生成他们解压后的一个文件
  24. file = new File(destFile+File.separator+entry.getName());
  25. if (entry.isDirectory()) {
  26. file.mkdirs();
  27. } else {
  28. // 如果指定文件的目录不存在,则创建之.
  29. File parent = file.getParentFile();
  30. if (!parent.exists()) {
  31. parent.mkdirs();
  32. }
  33. //获取出该压缩实体的输入流
  34. inputStream = zipFile.getInputStream(entry);
  35. fileOut = new FileOutputStream(file);
  36. int length = 0;
  37. //将实体写到本地文件中去
  38. while ((length = inputStream.read(buf)) > 0) {
  39. fileOut.write(buf, 0, length);
  40. }
  41. fileOut.close();
  42. inputStream.close();
  43. }
  44. }
  45. zipFile.close();
  46. //解压完后将原压缩文件删除
  47. File zipfile = new File(unZipfile);
  48. if(zipfile.exists()){
  49. zipfile.delete();
  50. }
  51. } catch (IOException ioe) {
  52. ioe.printStackTrace();
  53. }
  54. }
  55. /**
  56. * 一个文件夹压缩
  57. * 压缩文件夹
  58. * @param filepath
  59. * @param savepath
  60. * @throws Exception
  61. */
  62. public static void toZip(String filepath,String savepath) throws Exception{
  63. File file = new File(filepath);
  64. if(file.exists()){
  65. //判断导出路径是否为空,如果为空,则将压缩包生成到当前路径下
  66. if(StringUtils.isBlank(savepath)){
  67. savepath = filepath+".zip";
  68. }else{
  69. savepath = savepath+".zip";
  70. }
  71. ZipOutputStream outPut = new ZipOutputStream(new FileOutputStream(new File(savepath)));
  72. outPut.setEncoding("GBK");//设置编码
  73. createZip(outPut,file.listFiles(),null);
  74. outPut.flush();
  75. outPut.close();
  76. }else{
  77. //not found
  78. throw new RuntimeException("Err :not found file exception:"+filepath);
  79. }
  80. }
  81. private static void createZip(org.apache.tools.zip.ZipOutputStream outPut,File[] listFiles,String fuPath) throws Exception {
  82. for(File f : listFiles){
  83. String name = fuPath==null?f.getName():fuPath+"/"+f.getName();;
  84. if(f.isDirectory()){
  85. outPut.putNextEntry(new ZipEntry(name+"/"));
  86. createZip(outPut,f.listFiles(),name);
  87. }else{
  88. outPut.putNextEntry(new ZipEntry(name));
  89. InputStream is = new FileInputStream(f);
  90. byte[] bys = new byte[1024];
  91. int len = 0;
  92. while((len = is.read(bys))!=-1)
  93. outPut.write(bys, 0, len);
  94. is.close();
  95. outPut.flush();
  96. }
  97. }
  98. }
  99. /*
  100. * 复制文件 只能使复制文件,不能复制文件夹
  101. */
  102. public static void fileChannelCopy(File fromfile, File tofile) {
  103. FileInputStream fi = null;
  104. FileOutputStream fo = null;
  105. FileChannel in = null;
  106. FileChannel out = null;
  107. try {
  108. fi = new FileInputStream(fromfile);
  109. fo = new FileOutputStream(tofile);
  110. in = fi.getChannel();//得到对应的文件通道
  111. out = fo.getChannel();//得到对应的文件通道
  112. in.transferTo(0, in.size(), out);//连接两个通道,并且从in通道读取,然后写入out通道
  113. } catch (IOException e) {
  114. e.printStackTrace();
  115. } finally {
  116. try {
  117. fi.close();
  118. in.close();
  119. fo.close();
  120. out.close();
  121. } catch (IOException e) {
  122. e.printStackTrace();
  123. }
  124. }
  125. }
  126. }</span>

zip文件解压或压缩的更多相关文章

  1. c++builder ZIP文件解压与压缩(ZLIB DLL调用)(转载 )

    转载:http://blog.csdn.net/goodai007/article/details/7414512 头文件:ZipAndFile.h //----------------------- ...

  2. ZIP文件解压

    public class DZip { /// <summary> /// 压缩为ZIP文件 /// </summary> public void Zip(string dir ...

  3. linux下压缩成zip文件解压zip文件

    linux  zip命令的基本用法是: zip [参数] [打包后的文件名] [打包的目录路径] linux  zip命令参数列表: -a     将文件转成ASCII模式 -F     尝试修复损坏 ...

  4. Linux:文件解压与压缩

    文件打包与压缩 常见压缩文件格式: |文件后缀名 |说明| |.zip |zip程序打包压缩的文件| |.rar |rar程序压缩的文件| |.7z |7zip程序压缩的文件| |.tar |tar程 ...

  5. asp.net实现文件解压和压缩

    C#解压RAR压缩文件(--转载--测试通过) using System; using System.Collections.Generic; using System.Text; using Sys ...

  6. Linux 下 zip 文件解压乱码解决方案,ubuntu16.10亲测可用

    文章来源: https://www.zhihu.com/question/20523036 今天邮件中收到了一个压缩文件,解压后却是乱码,从网上也找了几个方法,目前这个方法还是比较可靠的,如下所示: ...

  7. Python实现加密的ZIP文件解压(密码已知)

    博主在上篇博文介绍了<Python实现加密的RAR文件解压(密码已知)>后,又尝试了ZIP文件的解压方法,下面开始分享. 当ZIP文件的压缩密码已知时,可以通过调用zipfile库进行解压 ...

  8. linux .tar.xz 文件解压和压缩

    场景:centos7.0下文件格式为xxx.tar.xz,解压和压缩命令: 压缩 tar -Jcf linux-3.10.0-123.13.1.el7.tar.xz(文件名) linux-3.10.0 ...

  9. Liunx文件解压与压缩

    文件压缩和解压缩 常见压缩格式如下 .zip .gz .bz2 .tar.gz .tar.gz2 .zip压缩 zip 压缩文件名 源文件 压缩文件 zip -r(递归) 压缩文件名 源目录 压缩目录 ...

随机推荐

  1. 给LinkLabel文本绘制颜色

    我在form中有一个linkLabel,显示文字是“中秋快乐”.现在我希望其中的“中秋”两个字用红色字体显示,“快乐”用黑色字体.请问如何在一个linkLabel中实现上述效果? 答案: privat ...

  2. 窗体位置设置StartPosition属性

    有如下选项,分别含义如下: CenterParent                    窗体在其父窗体中居中.      CenterScreen                    窗体在当前 ...

  3. Angular之【form提交问题】

    前端页面是这样: <form class="form-horizontal" role="form" name="LoginForm" ...

  4. 我用的一些Node.js开发工具、开发包、框架等总结

    开发工具 1.WebStorm,毫无疑问非他莫属,跨平台,强大的代码提示,支持Nodejs调试,此外还支持vi编辑模式,这点我很喜欢. 2.做些小型项目用Sublime Text. 3.Browser ...

  5. Using jQuery to add a dynamic “Back To Top” floating button with smooth scroll

    Ever read a really long blog post or article and then had to scroll all the way up to the top of the ...

  6. cadence 封装制作小结

    assembly :是装配层,就是元器件的实际大小,用来产生元器件的装配图.也可以使用此层进行布局:外框尺寸应该为元件除焊盘外的部分 该区域可比silkscreen小10mil,线宽不用设置,矩形即可 ...

  7. PHP视频教程 > PHP面向对象编程视频教程

    当前位置: 主页 > 编程开发 > PHP视频教程 > PHP面向对象编程视频教程 > kingstone金士顿手机内存卡16G仅65元 1.1.什么是面向对象和类 上传日期: ...

  8. 【NHibernate】应用层面需要掌握的知识汇总

    休息接待区 欢迎加入NHibernate中文社区!在讨论中寻找乐趣!在问题中寻找答案! 旅途站点路线 第一站:熟悉NHibernate NHibernate之旅(1):开篇有益 第二站:接触NHibe ...

  9. C语言基础(转载自大海笔记)

    # C语言基础2015年03月26日10:04:411.    语言排行榜C——java——objective-C2.    进制:进制:进位机制.用普通的话讲,应该为人为的定义一种度量来标识一样东西 ...

  10. ios设备 分辨率(转)

    1 iOS设备的分辨率 iOS设备,目前最主要的有3种(Apple TV等不在此讨论),按分辨率分为两类 iPhone/iPod Touch 普屏分辨率    320像素 x 480像素 Retina ...