3

我创建了 zip 文件 (sample.zip),其中包含一些没有问题的文件。当我打开 sample.zip 时,它包含预期的文件。

我想将该 zip 文件放入 http 响应中。目前我正在使用以下内容:

        response.setContentType("application/zip");
        response.addHeader("Content-Disposition", "attachment; filename="+"sampleZip.zip");
        response.setContentLength(2048);
        response.setHeader("Set-Cookie", "fileDownload=true; path=/");
        FileInputStream fileInputStream = new FileInputStream("sample.zip");
        OutputStream responseOutputStream = response.getOutputStream();
        int bytes;
        while ((bytes = fileInputStream.read()) != -1) {
            responseOutputStream.write(bytes);
        }
        response.flushBuffer();

现在它在我的浏览器默认下载位置下载 zip 文件。但是当我打开那个 zip 文件时,它显示

无法打开文件:它似乎不是有效的存档

请帮我解决这个问题。

4

1 回答 1

3

这段代码对我来说看起来不错。但是您正在设置可能是问题的默认内容长度。创建 File 实例并使用 file.length() 方法设置内容长度并为您的输入流使用相同的文件。逐字节读取也不是一个好主意。如果可能,使用 apache 的 IOUtils.copy() 将数据从输入流复制到 ServletOutputStream。

于 2013-07-05T15:56:50.213 回答