文件的打包压缩与下载

java代码:action方法

public  void zip(List<BbEntity list,String zipName,,String sourceName){

OutputStream o = null;

o = servletActionContext.getResponse().getOutputStream();//将输出流写入到服务器的响应输出流里。

response.setHeader("","attachement;filename='xx.zip'");//对下载的文件重命名

ZipOutputStream out =new ZipOutputStream(o);

//ZipOutputStream out =new ZipOutputStream(new File(zipName));//将输出流写入到指定的zip文件里。

for(int i=0;i<list.size();i++){

BbEntity bb = list.get(i);

out.putNextEntry(new ZipEntry(bb.getDisplayPath()+"/"+bb.getFileName));

FileInputStream in = new FileInputStream(new File(bb.getRealPath()));

int b;

while((b=in.read())!=-1){

out.write(b);

}

in.close();

}

out.close();

}

}

}


调用方式:zip(getBbList(),"d:/xx.zip","d:/xx")

页面调用方式:window.location = '${pagecontext.request.contextPath}/xx/yy!zip.action'

页面展示:弹出一个下载对话框。


将upload文件写到指定的path,文件名为filename

 public static void saveFileFromInputStream(File upload,String path,String filename) throws IOException
    {      
        InputStream in = null;
        OutputStream out = null;
        try {
            in = new BufferedInputStream(new FileInputStream(upload));
            out = new BufferedOutputStream(new FileOutputStream(path + "/"
                    + filename));
            byte[] buffer = new byte[BUFFER_SIZE];
            int byteread = 0;
            while ((byteread = in.read(buffer)) != -1) {
                out.write(buffer, 0, byteread);
                out.flush();
            }
        } catch (Exception e) {
            e.printStackTrace();
        }finally{
            in.close();
            out.close();
        }
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值