Java打包下载

public class DownLoad {

        public  HttpServletResponse downLoadFiles(List<File> oldFiles,List<File> files,HttpServletResponse response)throws Exception {

            try {
                //List<File> 作为参数传进来,就是把多个文件的路径放到一个list里面
                //创建一个临时压缩文件

                //临时文件可以放在CDEF盘中,但不建议这么做,因为需要先设置磁盘的访问权限,最好是放在服务器上,方法最后有删除临时文件的步骤
                String date = new SimpleDateFormat("yyyy-MM-dd").format(new Date()).toString();

                String zipFilename =  "F:/"+date+".zip" ;
                File file = new File(zipFilename);
                if (!file.exists()){
                    file.createNewFile();
                }
                response.reset();
                //response.getWriter()
                //创建文件输出流
                FileOutputStream fous = new FileOutputStream(file);
                ZipOutputStream zipOut = new ZipOutputStream(fous);
                zipFile(files, zipOut);
                zipOut.close();
                fous.close();
                return downloadZip(oldFiles,file,response);
            }catch (Exception e) {
                e.printStackTrace();
            }
            return response ;
        }


        public  void zipFile (List files,ZipOutputStream outputStream) {
            int size = files.size();
            for(int i = 0; i < size; i++) {
                File file = (File) files.get(i);
                zipFile(file, outputStream);
            }
        }

        public  void zipFile(File inputFile,  ZipOutputStream ouputStream) {
            try {
                if(inputFile.exists()) {
                    if (inputFile.isFile()) {
                        FileInputStream IN = new FileInputStream(inputFile);
                        BufferedInputStream bins = new BufferedInputStream(IN, 512);
                        ZipEntry entry = new ZipEntry(inputFile.getName());
                        ouputStream.putNextEntry(entry);
                        // 向压缩文件中输出数据
                        int nNumber;
                        byte[] buffer = new byte[512];
                        while ((nNumber = bins.read(buffer)) != -1) {
                            ouputStream.write(buffer, 0, nNumber);
                        }
                        // 关闭创建的流对象
                        bins.close();
                        IN.close();
                    } else {
                        try {
                            File[] files = inputFile.listFiles();
                            for (int i = 0; i < files.length; i++) {
                                zipFile(files[i], ouputStream);
                            }
                        } catch (Exception e) {
                            e.printStackTrace();
                        }
                    }
                }
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
        public  HttpServletResponse downloadZip(List<File> oldFiles,File file,HttpServletResponse response) {
            if(file.exists() == false){
                System.out.println("待压缩的文件目录:"+file+"不存在.");
            }else{
                try {
                    // 以流的形式下载文件。
                    InputStream fis = new BufferedInputStream(new FileInputStream(file.getPath()));
                    byte[] buffer = new byte[fis.available()];
                    fis.read(buffer);
                    fis.close();
                    // 清空response
                    response.reset();

                    OutputStream toClient = new BufferedOutputStream(response.getOutputStream());
                    response.setContentType("application/octet-stream");

                    //如果输出的是中文名的文件,在此处就要用URLEncoder.encode方法进行处理
                    response.setHeader("Content-Disposition", "attachment;filename="
                            + new String(file.getName().getBytes("GB2312"), "ISO8859-1"));
                    toClient.write(buffer);
                    toClient.flush();
                    toClient.close();
                } catch (IOException ex) {
                    ex.printStackTrace();
                }finally{
                    try {
                        File f = new File(file.getPath());
                        f.delete();
                        for (File oldFile:oldFiles){
                            oldFile.delete();
                        }
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
            }
            return response;
        }

最近的项目中遇到了这个打包下载,经过万能的百度,找到了这个可以直接用的,放在这里,防止以后还能用到,也给大家提供一个便利。

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

宁宁不吃饭

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值