• Java实现打包下载多个文件到桌面


    业务场景

    我们平时实现下载需求的时候,都是单个文件的下载。但有时候用户需要一次性下载多个文件,并且保存在一个压缩包中,用于转发给其他人,那么就需要打包下载了。

    使用到的类

    ZipOutputStream

    用于直接将文件写入到压缩包中,因为是要将多个文件,写入到压缩包中,所以这里是输出流。如果是读取压缩包里面的数据,则用输入流。

    ZipEntry

    压缩包文件中的实体类。比如一个压缩包里面有几个文件,那么里面的每个文件都是一个ZipEntry.

    具体实现代码

    import javax.swing.filechooser.FileSystemView;
    import java.io.*;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipOutputStream;
    
    /**
     * @author 三文鱼先生
     * @title
     * @description
     * @date 2022/7/27
     **/
    public class Test {
        public static void main(String[] args) throws Exception {
            List<String> list = new ArrayList<>();
            //这里输入本机的文件路径
            list.add("文件路径1");
            list.add("文件路径2");
            list.add("文件路径3");
            packageZip(list , "测试");
        }
    
    	//这里需要打包的文件list以字符串传递
        public static void packageZip(List<String> list , String zipName) throws Exception {
            //默认存储到桌面
            File zipFile = new File(getDesktop() + File.separator + zipName + ".zip");
            if (zipFile.exists())
                throw new Exception("文件已存在!");
            if(list == null || list.size() == 0)
                throw new Exception("打包文件为空!");
    
            FileInputStream fileInputStream = null;
            BufferedInputStream bufferedInputStream = null;
            //一次传输10k
            byte[] bytes = new byte[1024*10];
            try(
                    //zip的输出流
                    FileOutputStream outputStream = new FileOutputStream(zipFile);
                    ZipOutputStream zipOutputStream = new ZipOutputStream(outputStream)
                    ) {
    
                for (String s : list) {
                    File file = new File(s);
                    //单个文件的输入流
                    fileInputStream = new FileInputStream(file);
                    bufferedInputStream = new BufferedInputStream(fileInputStream , 1024*10);
                    //单个文件输出到zip文件中
                    ZipEntry zipEntry = new ZipEntry(file.getName());
                    zipOutputStream.putNextEntry(zipEntry);
                    int i = 0;
                    //单个文件以流的形式写入
                    while ((i = bufferedInputStream.read(bytes , 0 , 1024*10)) != -1) {
                        zipOutputStream.write(bytes , 0 , i);
                    }
                    //这里需要关闭单个文件的输入流
                    bufferedInputStream.close();
                }
    
            }catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }finally {
                if (bufferedInputStream != null) bufferedInputStream.close();
            }
        }
    
        //获取桌面路路径
        public static String getDesktop() {
            File desktopDir = FileSystemView.getFileSystemView()
                    .getHomeDirectory();
            return desktopDir.getAbsolutePath();
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76

    SpringBoot的下载逻辑

    参考之前的文章记SpringBoot下载的两种方式

    稍微修改一下即可,打包下载就不需要对文件进行分类下载了。逻辑变成压缩打包 -> 下载压缩包。需要值得注意的是,下载完需要把打包在服务器上的压缩吧,delete一下

  • 相关阅读:
    弘辽科技:淘宝店铺怎么补流量单?淘宝如何快速获取流量?
    react cli配置stylelint样式规范
    【ZooKeeper】zookeeper源码6-FastLeaderElection选举算法
    filp_open
    ssm+vue的课程网络学习平台管理系统(有报告)。Javaee项目,ssm vue前后端分离项目。
    如何在 ELEMENTOR 中创建、编辑和设置列样式
    嘉泰实业举行“互联网金融知识社区”“安全理财风险讲座”等活动
    操作系统—— I/O 相关知识
    vue 如何依次请求多个 axios 请求,同步请求多个,按次序请求
    【计算机】CPU,芯片以及操作系统概述
  • 原文地址:https://blog.csdn.net/qq_44717657/article/details/126017847