码迷,mamicode.com
首页 > 编程语言 > 详细

JAVAWEB压缩多个文件并下载

时间:2017-01-13 15:50:31      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:response   while   length   打包图   int   type   文件流   filename   isp   

        //文件名称
        String[] names={"one.jpg","two.jpg","three.jpg","four.jpg"};
        //四个文件流
        FileInputStream input1 = new FileInputStream(new File("文件路径"));
        FileInputStream input2 = new FileInputStream(new File("文件路径"));
        FileInputStream input3 = new FileInputStream(new File("文件路径"));
        FileInputStream input4 = new FileInputStream(new File("文件路径"));
        FileInputStream[] inputs={input1,input2,input3,input4};
        //ZIP打包图片
        File zipFile = new File("压缩文件存放路径");
        byte[] buf = new byte[1024];
        int len;
        ZipOutputStream zout=new ZipOutputStream(new FileOutputStream(zipFile));
        for (int i = 0; i < inputs.length; i++) {  
            FileInputStream in =inputs[i];  
            zout.putNextEntry(new ZipEntry(names[i]));    
            while ((len = in.read(buf)) > 0) {  
                zout.write(buf, 0, len);  
            }  
            zout.closeEntry();  
            in.close();  
        }
        zout.close();
        
        
        //下载图片
        FileInputStream zipInput =new FileInputStream(zipFile);
        OutputStream out = response.getOutputStream();
        response.setContentType("application/octet-stream");
        response.setHeader("Content-Disposition", "attachment; filename=images.zip");
        while ((len=zipInput.read(buf))!= -1){  
            out.write(buf,0,len);  
        }
        zipInput.close();
        out.flush();
        out.close();
        //删除压缩包
        zipFile.delete();

 

JAVAWEB压缩多个文件并下载

标签:response   while   length   打包图   int   type   文件流   filename   isp   

原文地址:http://www.cnblogs.com/yzjSince92/p/6282869.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!