ZipUtils.java 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. package com.rf.AIquantum.utils;
  2. import java.io.File;
  3. import java.io.FileInputStream;
  4. import java.io.FileNotFoundException;
  5. import java.io.FileOutputStream;
  6. import java.io.IOException;
  7. import java.util.zip.ZipEntry;
  8. import java.util.zip.ZipOutputStream;
  9. import org.slf4j.Logger;
  10. import org.slf4j.LoggerFactory;
  11. public class ZipUtils {
  12. private static final Logger log = LoggerFactory.getLogger(ZipUtils.class);
  13. private ZipUtils() {
  14. }
  15. /**
  16. * 创建ZIP文件
  17. * @param sourcePath 文件或文件夹路径
  18. * @param zipPath 生成的zip文件存在路径(包括文件名)
  19. * @param isDrop 是否删除原文件:true删除、false不删除
  20. */
  21. public static void createZip(String sourcePath, String zipPath,Boolean isDrop) {
  22. FileOutputStream fos = null;
  23. ZipOutputStream zos = null;
  24. try {
  25. fos = new FileOutputStream(zipPath);
  26. zos = new ZipOutputStream(fos);
  27. //zos.setEncoding("utf8");//此处修改字节码方式。
  28. //createXmlFile(sourcePath,"293.xml");
  29. writeZip(new File(sourcePath), "", zos,isDrop);
  30. } catch (FileNotFoundException e) {
  31. log.error("创建ZIP文件失败",e);
  32. } finally {
  33. try {
  34. if (zos != null) {
  35. zos.close();
  36. }
  37. } catch (IOException e) {
  38. log.error("创建ZIP文件失败",e);
  39. }
  40. }
  41. }
  42. /**
  43. * 清空文件和文件目录
  44. *
  45. * @param f
  46. */
  47. public static void clean(File f) throws Exception {
  48. String cs[] = f.list();
  49. if (cs == null || cs.length <= 0) {
  50. //System.out.println("delFile:[ " + f + " ]");
  51. boolean isDelete = f.delete();
  52. if (!isDelete) {
  53. //System.out.println("delFile:[ " + f.getName() + "文件删除失败!" + " ]");
  54. throw new Exception(f.getName() + "文件删除失败!");
  55. }
  56. } else {
  57. for (int i = 0; i < cs.length; i++) {
  58. String cn = cs[i];
  59. String cp = f.getPath() + File.separator + cn;
  60. File f2 = new File(cp);
  61. if (f2.exists() && f2.isFile()) {
  62. //System.out.println("delFile:[ " + f2 + " ]");
  63. boolean isDelete = f2.delete();
  64. if (!isDelete) {
  65. //System.out.println("delFile:[ " + f2.getName() + "文件删除失败!" + " ]");
  66. throw new Exception(f2.getName() + "文件删除失败!");
  67. }
  68. } else if (f2.exists() && f2.isDirectory()) {
  69. clean(f2);
  70. }
  71. }
  72. //System.out.println("delFile:[ " + f + " ]");
  73. boolean isDelete = f.delete();
  74. if (!isDelete) {
  75. //System.out.println("delFile:[ " + f.getName() + "文件删除失败!" + " ]");
  76. throw new Exception(f.getName() + "文件删除失败!");
  77. }
  78. }
  79. }
  80. private static void writeZip(File file, String parentPath, ZipOutputStream zos,Boolean isDrop) {
  81. if(file.exists()){
  82. if(file.isDirectory()){//处理文件夹
  83. parentPath+=file.getName()+File.separator;
  84. File [] files=file.listFiles();
  85. if(files.length != 0)
  86. {
  87. for(File f:files){
  88. writeZip(f, parentPath, zos,isDrop);
  89. }
  90. }
  91. else
  92. { //空目录则创建当前目录
  93. try {
  94. zos.putNextEntry(new ZipEntry(parentPath));
  95. } catch (IOException e) {
  96. // TODO Auto-generated catch block
  97. e.printStackTrace();
  98. }
  99. }
  100. }else{
  101. FileInputStream fis=null;
  102. try {
  103. fis=new FileInputStream(file);
  104. ZipEntry ze = new ZipEntry(parentPath + file.getName());
  105. zos.putNextEntry(ze);
  106. byte [] content=new byte[1024];
  107. int len;
  108. while((len=fis.read(content))!=-1){
  109. zos.write(content,0,len);
  110. zos.flush();
  111. }
  112. } catch (FileNotFoundException e) {
  113. log.error("创建ZIP文件失败",e);
  114. } catch (IOException e) {
  115. log.error("创建ZIP文件失败",e);
  116. }finally{
  117. try {
  118. if(fis!=null){
  119. fis.close();
  120. }
  121. if(isDrop){
  122. clean(file);
  123. }
  124. }catch(IOException e){
  125. log.error("创建ZIP文件失败",e);
  126. } catch (Exception e) {
  127. e.printStackTrace();
  128. }
  129. }
  130. }
  131. }
  132. }
  133. }