java下载打包成zip

随笔

1、调用

    // 导出归档件
    // 若是没有选中则导出全部,选中则按照选中Laura
    public void plistDownLoad() throws Exception {
        String fileIds = request.getParameter ("fileIds");

        // 此处模拟处理ids,拿到文件下载url
        List<String> paths = new ArrayList<> ( );
        String realPath = request.getSession ( ).getServletContext ( ).getRealPath ("/");// 锁定工程路径下(Windows)
        String url = realPath + "upload\\pdf2\\";// 统一文件夹地址
        
        if ( DailyUtil.isStringEmpty (fileIds)){// 不为空的逗号隔开字符串,填充
            String[] split = fileIds.split (",");
            if (DailyUtil.isArray (split)){
                for (String pdfName : split) {
                    String filePath = url + pdfName+ ".pdf";// 组合的最终路径
                    paths.add (filePath);
                }
            }
        }else {// 不选中则导出所有(遍历整个 目录)
            String fNames = DailyFileUtil.folderMethod2 (url);
            String[] split = fNames.split (",");
            if (DailyUtil.isArray (split)){
                for (String pdfName : split) {
                    String filePath = url + pdfName;// 组合的最终路径
                    paths.add (filePath);
                }
            }
        }
        

        // paths.add ("C:\\Users\\E480\\Desktop\\Study\\casul笔记.txt");
//        paths.add ("C:\\Users\\E480\\Desktop\\Study\\config配置中心笔记.txt");
//        paths.add ("C:\\Users\\E480\\Desktop\\Study\\GateWay.txt");
        if (paths.size ( ) != 0) {
            // 创建临时路径,存放压缩文件
            File dir = new File(url+"\\zip");
            if (!dir.exists()) {// 判断目录是否存在     
                dir.mkdir();
            }
            
            String zipFilePath = url+"\\zip\\myzip.zip";

            // 压缩输出流,包装流,将临时文件输出流包装成压缩流,将所有文件输出到这里,打成zip包
            ZipOutputStream zipOut = new ZipOutputStream (new FileOutputStream (zipFilePath));
            // 循环调用压缩文件方法,将一个一个需要下载的文件打入压缩文件包
            for (String path : paths) {
                // 该方法在下面定义
                DailyFileUtil.fileToZip (path, zipOut);
            }
            // 压缩完成后,关闭压缩流
            zipOut.close ( );

            //拼接下载默认名称并转为ISO-8859-1格式
            String fileName = new String (("出国出境归档压缩文件.zip").getBytes ( ), "ISO-8859-1");
            response.setHeader ("Content-Disposition", "attchment;filename=" + fileName);

            //该流不可以手动关闭,手动关闭下载会出问题,下载完成后会自动关闭
            ServletOutputStream outputStream = response.getOutputStream ( );
            FileInputStream inputStream = new FileInputStream (zipFilePath);
            // 如果是SpringBoot框架,在这个路径
            // org.apache.tomcat.util.http.fileupload.IOUtils产品
            // 否则需要自主引入apache的 commons-io依赖
            // copy方法为文件复制,在这里直接实现了下载效果
            IOUtils.copy (inputStream, outputStream);

            // 关闭输入流
            inputStream.close ( );

            //下载完成之后,删掉这个zip包
            File fileTempZip = new File (zipFilePath);
            fileTempZip.delete ( );
        }
    }

工具方法

package com.jh.jcs.attence.calendar.util;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

import javax.servlet.ServletOutputStream;
import java.io.*;
import java.util.ArrayList;
import java.util.List;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;

/*
 * @Description:    操作文件的工具集
 * @Author:         Jk_kang
 * @CreateDate:     2021/11/23 15:05
 * @Param:
 * @Return:
 **/
public class DailyFileUtil {

    // 遍历目录(递归
    public static String folderMethod2(String path) {
        File file = new File (path);

        String fileNames = "";
        if (file.exists ( )) {
            File[] files = file.listFiles ( );
            if (null != files) {
                for (File file2 : files) {
                    if (file2.isDirectory ( )) {
                        System.out.println ("文件夹:" + file2.getAbsolutePath ( ));
                        folderMethod2 (file2.getAbsolutePath ( ));
                    } else {
                        fileNames += file2.getName ( ) + ",";
                        System.out.println ("文件:" + file2.getAbsolutePath ( ));
                    }
                }
            }
        } else {
            System.out.println ("文件不存在!");
        }
        return fileNames;
    }

    public static void fileToZip(String filePath, ZipOutputStream zipOut) throws IOException {
        // 需要压缩的文件
        File file = new File (filePath);
        // 获取文件名称,如果有特殊命名需求,可以将参数列表拓展,传fileName
        String fileName = file.getName ( );
        FileInputStream fileInput = new FileInputStream (filePath);
        // 缓冲
        byte[] bufferArea = new byte[1024 * 10];
        BufferedInputStream bufferStream = new BufferedInputStream (fileInput, 1024 * 10);
        // 将当前文件作为一个zip实体写入压缩流,fileName代表压缩文件中的文件名称
        zipOut.putNextEntry (new ZipEntry (fileName));
        int length = 0;
        // 最常规IO操作,不必紧张
        while ((length = bufferStream.read (bufferArea, 0, 1024 * 10)) != -1) {
            zipOut.write (bufferArea, 0, length);
        }
        //关闭流
        fileInput.close ( );
        // 需要注意的是缓冲流必须要关闭流,否则输出无效
        bufferStream.close ( );
        // 压缩流不必关闭,使用完后再关
    }


    /**
     * 文件压缩
     *
     * @param srcFile 目录或者单个文件
     * @param zipFile 压缩后的ZIP文件
     */
    public static void doCompress(File srcFile, File zipFile) throws IOException {
        ZipOutputStream out = null;
        try {
            out = new ZipOutputStream (new FileOutputStream (zipFile));
            doCompress (srcFile, out);
        } catch (Exception e) {
            throw e;
        } finally {
            out.close ( );//记得关闭资源
        }
    }

    public static void doCompress(String filelName, ZipOutputStream out) throws IOException {
        doCompress (new File (filelName), out);
    }

    public static void doCompress(File file, ZipOutputStream out) throws IOException {
        doCompress (file, out, "");
    }

    public static void doCompress(File inFile, ZipOutputStream out, String dir) throws IOException {
        if (inFile.isDirectory ( )) {
            File[] files = inFile.listFiles ( );
            if (files != null && files.length > 0) {
                for (File file : files) {
                    String name = inFile.getName ( );
                    if (!"".equals (dir)) {
                        name = dir + "/" + name;
                    }
                    DailyFileUtil.doCompress (file, out, name);
                }
            }
        } else {
            DailyFileUtil.doZip (inFile, out, dir);
        }
    }

    public static void doZip(File inFile, ZipOutputStream out, String dir) throws IOException {
        String entryName = null;
        if (!"".equals (dir)) {
            entryName = dir + "/" + inFile.getName ( );
        } else {
            entryName = inFile.getName ( );
        }
        ZipEntry entry = new ZipEntry (entryName);
        out.putNextEntry (entry);

        int len = 0;
        byte[] buffer = new byte[1024];
        FileInputStream fis = new FileInputStream (inFile);
        while ((len = fis.read (buffer)) > 0) {
            out.write (buffer, 0, len);
            out.flush ( );
        }
        out.closeEntry ( );
        fis.close ( );
    }

    // 工具api(重载复用)
    public static boolean createFileOrDir(String path) {
        return createFileOrDir (new File (path));
    }

    // 没有文件则创建
    private static boolean createFileOrDir(File file) {
        if (file.isDirectory ( )) {
            return file.mkdirs ( );
        }
        File parentFile = file.getParentFile ( );
        if (!parentFile.exists ( )) {
            System.out.println (parentFile.getPath ( ));
            boolean mkdirs = parentFile.mkdirs ( );
            if (!mkdirs)
                return false;
        } else {
            if (!parentFile.isDirectory ( )) {
                boolean delete = parentFile.delete ( );
                boolean mkdirs = parentFile.mkdirs ( );
                if (!delete || !mkdirs) return false;
            }
        }
        try {
            return file.createNewFile ( );
        } catch (IOException e) {
            e.printStackTrace ( );
        }
        return false;
    }
}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,029评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,395评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,570评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,535评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,650评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,850评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,006评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,747评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,207评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,536评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,683评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,342评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,964评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,772评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,004评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,401评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,566评论 2 349

推荐阅读更多精彩内容