压缩包下载多个图片文件!

 文件zip下载接口:

package com.asiainfo.compute.controller;

import com.asiainfo.compute.util.ZipDownloadUtil;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.File;
import java.util.ArrayList;
import java.util.List;

/**
 * @Author panghl
 * @Date 2021/4/13 11:27
 * @Description TODO
 **/
@RestController
public class FileUploadController {

    @RequestMapping(value = "zipDownload", method = RequestMethod.GET)
    public String zipDownload(HttpServletRequest request, HttpServletResponse response) {
        List<File> files = new ArrayList<>();
        files.add(new File("D:\\mcms\\upload\\1616493697540-5-1d8d820e-e22f-4890-881e-42e3be9d1306.png"));
        files.add(new File("D:\\mcms\\upload\\1617849560262-1-cc794cd5-6850-413c-90c9-0b6e91e192f3.jpeg"));
        files.add(new File("D:\\mcms\\upload\\1617849560262-1-cc794cd5-6850-413c-90c9-0b6e91e192f3.jpeg"));
        ZipDownloadUtil.zipDownload(response, "demo.zip", files);
        return "download success";
    }

}
ZipDownloadUtil zip下载工具类
package com.asiainfo.compute.util;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.URLEncoder;
import java.util.List;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;

import javax.servlet.http.HttpServletResponse;


public class ZipDownloadUtil {

    private static final Logger logger = LoggerFactory.getLogger(ZipDownloadUtil.class);

    /**
     * 获取当前系统的临时目录
     */
    private static final String FILE_PATH = System.getProperty("java.io.tmpdir") + File.separator;

    private static final int ZIP_BUFFER_SIZE = 8192;

    private static final int idx = 0;

    /**
     * zip打包下载
     *
     * @param response
     * @param zipFileName
     * @param fileList
     */
    public static void zipDownload(HttpServletResponse response, String zipFileName, List<File> fileList) {
        // zip文件路径
        String zipPath = FILE_PATH + zipFileName;
        try {
            //创建zip输出流
            try (ZipOutputStream out = new ZipOutputStream(new FileOutputStream(zipPath))) {
                //声明文件集合用于存放文件
                byte[] buffer = new byte[1024];
                //将文件放入zip压缩包
                for (int i = 0; i < fileList.size(); i++) {
                    File file = fileList.get(i);
                    try (FileInputStream fis = new FileInputStream(file)) {
                        out.putNextEntry(new ZipEntry(i+"/"));
                        out.putNextEntry(new ZipEntry(i+"/"+file.getName()));
                        int len;
                        // 读入需要下载的文件的内容,打包到zip文件
                        while ((len = fis.read(buffer)) > 0) {
                            out.write(buffer, 0, len);
                        }
                        out.closeEntry();
                    }
                }
            }
            //下载zip文件
            downFile(response, zipFileName);
        } catch (Exception e) {
            logger.error("文件下载出错", e);
        } finally {
            // zip文件也删除
//            fileList.add(new File(zipPath));
//            deleteFile(fileList);
        }
    }


    /**
     * 文件下载
     *
     * @param response
     * @param zipFileName
     */
    private static void downFile(HttpServletResponse response, String zipFileName) {
        try {
            String path = FILE_PATH + zipFileName;
            File file = new File(path);
            if (file.exists()) {
                try (InputStream ins = new FileInputStream(path);
                     BufferedInputStream bins = new BufferedInputStream(ins);
                     OutputStream outs = response.getOutputStream();
                     BufferedOutputStream bouts = new BufferedOutputStream(outs)) {
                    response.setContentType("application/x-download");
                    response.setHeader("Content-disposition", "attachment;filename=" + URLEncoder.encode(zipFileName, "UTF-8"));
                    int bytesRead = 0;
                    byte[] buffer = new byte[ZIP_BUFFER_SIZE];
                    while ((bytesRead = bins.read(buffer, 0, ZIP_BUFFER_SIZE)) != -1) {
                        bouts.write(buffer, 0, bytesRead);
                    }
                    bouts.flush();
                }
            }
        } catch (Exception e) {
            logger.error("文件下载出错", e);
        }
    }

    /**
     * 删除文件
     *
     * @param fileList
     * @return
     */
//    public static void deleteFile(List<File> fileList) {
//        for (File file : fileList) {
//            if (file.exists()) {
//                file.delete();
//            }
//        }
//    }
}

 

测试即可实现下载批量图片到压缩包内。

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值