zip文件解压或压缩

时间:2022-01-19 15:11:23
  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>