java壓縮文件或文件夾並導出
tozipUtil:
package com.zhl.push.Utils; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.OutputStream; import java.util.zip.ZipEntry; import java.util.zip.ZipOutputStream; /** * @Author * @ClassName ToZIPUtil 壓縮文件 * @Description TODO * @Date 2019/3/25 17:39 * @Version 1.0 */ public class ToZIPUtil { private static final int BUFFER_SIZE = 2 * 1024; /** 23 * 壓縮成ZIP 24 * @param srcDir 壓縮文件夾路徑 25 * @param out 壓縮文件輸出流 26 * @param KeepDirStructure 是否保留原來的目錄結構,true:保留目錄結構; 27 * false:所有文件跑到壓縮包根目錄下(注意:不保留目錄結構可能會出現同名文件,會壓縮失敗) 28 * @throws RuntimeException 壓縮失敗會拋出運行時異常 29 */ public static void toZip(String srcDir, OutputStream out, boolean KeepDirStructure) throws RuntimeException{ long start = System.currentTimeMillis(); ZipOutputStream zos = null ; try { zos = new ZipOutputStream(out); File sourceFile = new File(srcDir); compress(sourceFile,zos,sourceFile.getName(),KeepDirStructure); long end = System.currentTimeMillis(); System.out.println("壓縮完成,耗時:" + (end - start) +" ms"); } catch (Exception e) { throw new RuntimeException("zip error from ZipUtils",e); }finally{ if(zos != null) { try { zos.close(); } catch (IOException e) { e.printStackTrace(); } } } } /** 94 * 遞歸壓縮方法 95 * @param sourceFile 源文件 96 * @param zos zip輸出流 97 * @param name 壓縮后的名稱 98 * @param KeepDirStructure 是否保留原來的目錄結構,true:保留目錄結構; 99 * false:所有文件跑到壓縮包根目錄下(注意:不保留目錄結構可能會出現同名文件,會壓縮失敗) 100 * @throws Exception 101 */ private static void compress(File sourceFile, ZipOutputStream zos, String name, boolean KeepDirStructure) throws Exception{ byte[] buf = new byte[BUFFER_SIZE]; if(sourceFile.isFile()){ // 向zip輸出流中添加一個zip實體,構造器中name為zip實體的文件的名字 zos.putNextEntry(new ZipEntry(name)); // copy文件到zip輸出流中 int len; FileInputStream in = new FileInputStream(sourceFile); while ((len = in.read(buf)) != -1){ zos.write(buf, 0, len); } // Complete the entry zos.closeEntry(); in.close(); } else { File[] listFiles = sourceFile.listFiles(); if(listFiles == null || listFiles.length == 0){ // 需要保留原來的文件結構時,需要對空文件夾進行處理 if(KeepDirStructure){ // 空文件夾的處理 zos.putNextEntry(new ZipEntry(name + "/")); // 沒有文件,不需要文件的copy zos.closeEntry(); } }else { for (File file : listFiles) { // 判斷是否需要保留原來的文件結構 if (KeepDirStructure) { // 注意:file.getName()前面需要帶上父文件夾的名字加一斜杠, // 不然最后壓縮包中就不能保留原來的文件結構,即:所有文件都跑到壓縮包根目錄下了 compress(file, zos, name + "/" + file.getName(),KeepDirStructure); } else { compress(file, zos, file.getName(),KeepDirStructure); } } } } } }
2:獲取服務器目錄:
/* **author:weijiakun *獲取目錄工具類 */ public static String getPath(String subdirectory){ //獲取跟目錄---與jar包同級目錄的upload目錄下指定的子目錄subdirectory File upload = null; try { //本地測試時獲取到的是"工程目錄/target/upload/subdirectory File path = new File(ResourceUtils.getURL("classpath:").getPath()); if(!path.exists()) path = new File(""); upload = new File(path.getAbsolutePath(),subdirectory); if(!upload.exists()) upload.mkdirs();//如果不存在則創建目錄 String realPath = upload + "/"; return realPath; } catch (FileNotFoundException e) { throw new RuntimeException("獲取服務器路徑發生錯誤!"); } }
3:創建文件夾或遞歸刪除文件夾及文件
//創建臨時文件夾 private String createFile(String filename){ File file =new File(filename); //如果文件夾不存在則創建 if (!file .exists() && !file .isDirectory()) { file .mkdir(); } return file.getAbsolutePath(); } //刪除文件 private void deleteFile(File file) { if (file.exists()) {//判斷文件是否存在 if (file.isFile()) {//判斷是否是文件 file.delete();//刪除文件 } else if (file.isDirectory()) {//否則如果它是一個目錄 File[] files = file.listFiles();//聲明目錄下所有的文件 files[]; for (int i = 0; i < files.length; i++) {//遍歷目錄下所有的文件 this.deleteFile(files[i]);//把每個文件用這個方法進行迭代 } file.delete();//刪除文件夾 } } else { System.out.println("所刪除的文件不存在"); } }
響應信息:
response.setContentType("multipart/form-data"); response.setCharacterEncoding("utf-8"); response.addHeader("Content-Disposition", "filename=" + fileName);