Java如何导出zip压缩文件

 更新时间:2023年07月15日 11:16:05   作者:郭优秀的笔记  
这篇文章主要介绍了Java如何导出zip压缩文件问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

Java技术迷

Java导出zip压缩文件

这里需要说明的是我的项目需要各种不同文件导出,所以进行压缩,当项目上线的时候,我们是没有本地电脑路径的,所以压缩路径我选择在项目的根目录下,全部压缩成功,调用删除,在进行删除,这样在虚拟机上也可以进行操作,不会影响,个别注意,在linux上很多项目如果不配置中文环境,导出的文件名会乱码,强调一下,好了,看代码

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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/**
    * 附件导出 (导出所有用户上传的文件格式 已压缩包形式导出 )。
    * 1.创建一个临时存放文件的tempFile。
    * 2.在临时文件夹中创建用户文件夹用来存放下载好的文件(用户文件夹可以用时间戳或者uuid来命名)。
    * 3.把临时文件夹压缩成zip文件,存放到tempfile下面。
    * 4.根据流的形式把压缩文件读到放到浏览器下载 5.关闭流,删除临时文件中的用户文件夹和压缩好的用户文件夹。
    *
    * @param response
    * @param export
    * @param request
    * @throws IOException
    */
   @RequestMapping("/fForm/enclosureExport")
   public void enclosureExport(HttpServletRequest request, HttpServletResponse response) throws IOException {
       File file1 = null;
       OutputStream out = response.getOutputStream();
       try {
           Map<String, Object> paramMap = RequestUtils.convertRequestToMap(request);
           Long formId = getLong(paramMap, "formId");
           String condition = getString(paramMap, "condition");
           List<Map<String, Object>> fromDataList = fFormService.findFFormData1(formId, condition);
           File file = null;
           // 获取项目路径
           String rootPath = this.getClass().getClassLoader().getResource("").getPath();
           // 创建临时文件夹tempFile
           File tempFile = new File(rootPath + "/tempFile");
           if (!tempFile.exists()) {
               tempFile.mkdirs();
           }
           // 创建用户文件夹 用来存放文件
           file1 = new File(tempFile.getPath() + "/" + System.currentTimeMillis());
           file1.mkdirs();
           for (Map<String, Object> map : fromDataList) {
               // 文件夹名称 根据序号名字创建
               String id = map.get("id").toString();
               String newFile = file1.getPath() + "/" + "序号" + id;
               // 新建的文件名称和路径
               file = new File(newFile);
               // 获取文件夹路径
               Path path = file.toPath();
               // 创建文件夹
               file.mkdirs();
               // 要下载的文件(包含各种文件格式,如图片 ,视频,pdf,等等...)
               Iterator<String> iter = map.keySet().iterator();
               while (iter.hasNext()) {
                   String key = iter.next();
                   String value = map.get(key).toString();
                   if (value.contains("https://")) {
                       // 截取后缀名
                       String str = value.substring(value.lastIndexOf(".") + 1);
                       // 截取的文件名
                       String str1 = value.substring(value.indexOf("com/") + 4, value.indexOf("-baidugongyi"));
                       String newFileNmae = str1 + "." + str;
                       // 调用下载工具类
                       ZipFileDownload.dolFile(value, path,newFileNmae);
                   }
               }
           }
           // 调用方法打包zip文件
           byte[] data = createZip(file1.getPath());
           // 压缩包名称
           String downloadName = file1.getName() + ".zip";
           response.setHeader("Content-Disposition",
                   "attachment;filename=" + URLEncoder.encode(downloadName, "utf-8"));
           response.addHeader("Content-Length", "" + data.length);
           response.setContentType("application/octet-stream;charset=UTF-8");
           IOUtils.write(data, out);
       } catch (Exception e) {
           e.printStackTrace();
       } finally {
           try {
               // 压缩成功后删除项目中文件夹
               if (file1.exists()) {
                   FileUtil.delFolder(file1.getPath());
               }
               if (out != null) {
                   out.flush();
                   out.close();
               }
           } catch (IOException e) {
               e.printStackTrace();
           }
       }
   }
   public byte[] createZip(String srcSource) throws Exception {
       ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
       ZipOutputStream zip = new ZipOutputStream(outputStream);
       // 将目标文件打包成zip导出
       File file = new File(srcSource);
       a(zip, file, "");
       IOUtils.closeQuietly(zip);
       return outputStream.toByteArray();
   }
   public void a(ZipOutputStream zip, File file, String dir) throws Exception {
       // 如果当前的是文件夹,则进行进一步处理
       try {
           if (file.isDirectory()) {
               // 得到文件列表信息
               File[] files = file.listFiles();
               // 将文件夹添加到下一级打包目录
               zip.putNextEntry(new ZipEntry(dir + "/"));
               dir = dir.length() == 0 ? "" : dir + "/";
               // 循环将文件夹中的文件打包
               for (int i = 0; i < files.length; i++) {
                   a(zip, files[i], dir + files[i].getName());
               }
           } else {
               // 当前的是文件,打包处理文件输入流
               BufferedInputStream bis = new BufferedInputStream(new FileInputStream(file));
               ZipEntry entry = new ZipEntry(dir);
               zip.putNextEntry(entry);
               zip.write(FileUtils.readFileToByteArray(file));
               IOUtils.closeQuietly(bis);
           }
       } catch (Exception e) {
           // TODO: handle exception
           zip.flush();
           zip.close();
       }
   }

文件下载工具类

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
/**
 * 文件下载(支持各种文件下载)
 * @author guoyunlong
 *
 */
public class ZipFileDownload {
    // public static final String HTTp_URL =
    // "https://gongyi.bj.bcebos.com/Jellyfish-baidugongyi-auction-9f6da244-e87d-4ab9-bd33-bfb9300be5f7.jpg";
    // public static void main(String[] args) {
    // Dol();
    // }
    /**
     * 文件下载
     *
     * @param urls 需要下载的url
     * @param path 需要下载的路径
     * @param newFileNmae 截取的新文件名
     * @return
     * @throws IOException
     */
    public static void dolFile(String urls, Path path, String newFileNmae) throws IOException {
        BufferedInputStream bis = null;
        BufferedOutputStream bos = null;
        File file = null;
        try {
            if (!urls.equals("") && urls != null) {
                URL url = new URL(urls);
                HttpURLConnection connection = (HttpURLConnection) url.openConnection();
                connection.setRequestMethod("GET");
                // 解决乱码问题
                connection.setRequestProperty("Content-type", "application/x-www-form-urlencoded;charset=UTF-8");
                connection.connect();
                InputStream is = connection.getInputStream();
                bis = new BufferedInputStream(is);
                file = new File(path + "/" + newFileNmae);
                FileOutputStream fos = new FileOutputStream(file);
                bos = new BufferedOutputStream(fos);
                int b = 0;
                byte[] byArr = new byte[1024 * 1024];
                while ((b = bis.read(byArr)) != -1) {
                    bos.write(byArr, 0, b);
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                if (bis != null) {
                    bis.close();
                }
                if (bos != null) {
                    bos.flush();
                    bos.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

删除文件方法:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
   /**
     * 删除文件夹以及文件夹内容
     
     * @param folderPath
     */
    public static void delFolder(String folderPath) {
        try {
            delAllFile(folderPath); // 删除完里面所有内容
            String filePath = folderPath;
            filePath = filePath.toString();
            java.io.File myFilePath = new java.io.File(filePath);
            myFilePath.delete(); // 删除空文件夹
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

全部代码就在这里,希望有用

Java将文件夹和里面的所有文件打包成zip或rar并导出

有一个项目需要将文件夹里面的所有文件压缩成zip并导出下载,并且保留原来文件夹里面的所有目录结构,找了一些资料整理了一下。

上代码:

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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.IOUtils;
import javax.servlet.http.HttpServletResponse;
import java.io.*;
import java.net.URLEncoder;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;
public class FileZipUtil {
    /**
     * 将指定路径下的所有文件打包zip导出
     * @param response HttpServletResponse
     * @param sourceFilePath 需要打包的文件夹路径
     * @param fileName 下载时的文件名称
     * @param postfix 下载时的文件后缀 .zip/.rar
     */
    public static void exportZip(HttpServletResponse response, String sourceFilePath, String fileName, String postfix) {
        // 默认文件名以时间戳作为前缀
        if(StringUtils.isBlank(fileName)){
            SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
            fileName = sdf.format(new Date());
        }
        String downloadName = fileName + postfix;
        // 将文件进行打包下载
        try {
            OutputStream os = response.getOutputStream();
            // 接收压缩包字节
            byte[] data = createZip(sourceFilePath);
            response.reset();
            response.setCharacterEncoding("UTF-8");
            response.addHeader("Access-Control-Allow-Origin", "*");
            response.setHeader("Access-Control-Expose-Headers", "*");
            // 下载文件名乱码问题
            response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(downloadName, "UTF-8"));
            //response.setHeader("Content-disposition", "attachment;filename*=utf-8''" + downloadName);
            response.addHeader("Content-Length", "" + data.length);
            response.setContentType("application/octet-stream;charset=UTF-8");
            IOUtils.write(data, os);
            os.flush();
            os.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    /**
     * 创建zip文件
     * @param sourceFilePath
     * @return byte[]
     * @throws Exception
     */
    private static byte[] createZip(String sourceFilePath) throws Exception{
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
        ZipOutputStream zip = new ZipOutputStream(outputStream);
        // 将目标文件打包成zip导出
        File file = new File(sourceFilePath);
        handlerFile(zip, file,"");
        // 无异常关闭流,它将无条件的关闭一个可被关闭的对象而不抛出任何异常。
        IOUtils.closeQuietly(zip);
        return outputStream.toByteArray();
    }
    /**
     * 打包处理
     * @param zip
     * @param file
     * @param dir
     * @throws Exception
     */
    private static void handlerFile(ZipOutputStream zip, File file, String dir) throws Exception {
        // 如果当前的是文件夹,则循环里面的内容继续处理
        if (file.isDirectory()) {
            //得到文件列表信息
            File[] fileArray = file.listFiles();
            if (fileArray == null) {
                return;
            }
            //将文件夹添加到下一级打包目录
            zip.putNextEntry(new ZipEntry(dir + "/"));
            dir = dir.length() == 0 ? "" : dir + "/";
            // 递归将文件夹中的文件打包
            for (File f : fileArray) {
                handlerFile(zip, f, dir + f.getName());
            }
        } else {
            // 如果当前的是文件,打包处理
            BufferedInputStream bis = new BufferedInputStream(new FileInputStream(file));
            ZipEntry entry = new ZipEntry(dir);
            zip.putNextEntry(entry);
            zip.write(FileUtils.readFileToByteArray(file));
            IOUtils.closeQuietly(bis);
            zip.flush();
            zip.closeEntry();
        }
    }
}

调用方法:

1
2
3
4
5
6
7
/**
     * 导出
     */
    @GetMapping("/export")
    public void getExport(HttpServletResponse response) throws Exception {
        FileZipUtil.exportZip(response, "D:\\Java\\123\\", "违法建筑治理应用场景数据采集", "zip");
    }

需要用到的common-io的jar包:

1
2
3
4
5
<dependency>
   <groupId>org.apache.commons</groupId>
    <artifactId>commons-io</artifactId>
    <version>1.3.2</version>
</dependency>

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

蓄力AI

微信公众号搜索 “ 脚本之家 ” ,选择关注

程序猿的那些事、送书等活动等着你

原文链接:https://blog.csdn.net/guoYLong/article/details/86540553

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请将相关资料发送至 reterry123@163.com 进行投诉反馈,一经查实,立即处理!

相关文章

  • Spring系列之事物管理

    Spring系列之事物管理

    这篇文章主要介绍了Spring系列之事物管理,文中通过示例代码介绍的非常详细,对大家学习或者使用spring方面知识具有一定的参考学习价值,需要的朋友们一起学习学习吧
    2021-09-09
  • java基础之Integer与int类型输出示例解析

    java基础之Integer与int类型输出示例解析

    这篇文章主要为大家介绍了java基础之Integer与int类型输出示例解析,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-06-06
  • java全角与半角标点符号相互转换详解

    java全角与半角标点符号相互转换详解

    这篇文章主要为大家介绍了java全角与半角标点符号相互转换详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-03-03
  • Spring Boot 整合单机websocket的步骤 附github源码

    Spring Boot 整合单机websocket的步骤 附github源码

    websocket 是一个通信协议,通过单个 TCP 连接提供全双工通信,这篇文章主要介绍了Spring Boot 整合单机websocket的步骤(附github源码),需要的朋友可以参考下
    2021-10-10
  • java网上图书商城(4)购物车模块1

    java网上图书商城(4)购物车模块1

    这篇文章主要为大家详细介绍了java网上图书商城,购物车模块,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-12-12
  • Spring中自带的@Schedule实现自动任务的过程解析

    Spring中自带的@Schedule实现自动任务的过程解析

    这篇文章主要介绍了关于Spring中自带的@Schedule实现自动任务,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2023-06-06
  • JavaWeb中异步交互的关键Ajax详解

    JavaWeb中异步交互的关键Ajax详解

    这篇文章主要给大家介绍了关于JavaWeb中异步交互关键Ajax的相关资料,在javaweb中,ajax是前后台交互的技术,可以实现异步请求,不用刷新整个页面就可以完成操作,需要的朋友可以参考下
    2023-07-07
  • Spring Boot设置支持跨域请求过程详解

    Spring Boot设置支持跨域请求过程详解

    这篇文章主要介绍了Spring Boot设置支持跨域请求过程详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
    2020-08-08
  • SpringBoot实现异步任务的项目实践

    SpringBoot实现异步任务的项目实践

    本文将使用SpringBoot 去实现异步之间的调用,提高系统的并发性能、用户体验,具有一定的参考价值,感兴趣的可以了解一下
    2023-10-10
  • java 中file.encoding的设置详解

    java 中file.encoding的设置详解

    这篇文章主要介绍了java 中file.encoding的设置详解的相关资料,需要的朋友可以参考下
    2017-04-04

最新评论