在服务器上创建Zip文件并使用java下载该zip文件 [英] Zip file created on server and download that zip, using java

查看:316
本文介绍了在服务器上创建Zip文件并使用java下载该zip文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下代码从mkyong到本地的zip文件。但是,我的要求是在服务器上压缩文件并需要下载。可以帮助任何人。

I have the below code got from mkyong, to zip files on local. But, my requirement is to zip files on server and need to download that. Could any one help.

代码写入zipFiles:

code wrote to zipFiles:

public void zipFiles(File contentFile, File navFile)
{
    byte[] buffer = new byte[1024];

    try{
        // i dont have idea on what to give here in fileoutputstream
        FileOutputStream fos = new FileOutputStream("C:\\MyFile.zip");
        ZipOutputStream zos = new ZipOutputStream(fos);
        ZipEntry ze= new ZipEntry(contentFile.toString());
        zos.putNextEntry(ze);
        FileInputStream in = new FileInputStream(contentFile.toString());

        int len;
        while ((len = in.read(buffer)) > 0) {
            zos.write(buffer, 0, len);
        }

        in.close();
        zos.closeEntry();

        //remember close it
        zos.close();

        System.out.println("Done");

    }catch(IOException ex){
       ex.printStackTrace();
    }
}

我可以在fileoutputstream中提供什么? contentfile和navigationfile是我从代码创建的文件。

what could i provide in fileoutputstream here? contentfile and navigationfile are files i created from code.

推荐答案

如果您的服务器是servlet容器,只需写一个 HttpServlet 执行压缩并提供文件。

If your server is a servlet container, just write an HttpServlet which does the zipping and serving the file.

您可以将servlet响应的输出流传递给<$的构造函数c $ c> ZipOutputStream 并且zip文件将作为servlet响应发送:

You can pass the output stream of the servlet response to the constructor of ZipOutputStream and the zip file will be sent as the servlet response:

ZipOutputStream zos = new ZipOutputStream(response.getOutputStream());

不要忘记在压缩之前设置响应mime类型,例如:

Don't forget to set the response mime type before zipping, e.g.:

response.setContentType("application/zip");

全貌:

public class DownloadServlet extends HttpServlet {

    @Override
    public void doGet( HttpServletRequest request, HttpServletResponse response ) throws ServletException, IOException {
        response.setContentType("application/zip");
        response.setHeader("Content-Disposition", "attachment; filename=data.zip");

        // You might also wanna disable caching the response
        // here by setting other headers...

        try ( ZipOutputStream zos = new ZipOutputStream(response.getOutputStream()) ) {
            // Add zip entries you want to include in the zip file
        }
    }
}

这篇关于在服务器上创建Zip文件并使用java下载该zip文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆