下载zip文件会使用servlet返回损坏的zip文件

时间:2010-08-17 14:53:53

标签: java servlets zip download

我正在尝试使用servlet创建一个zip文件,但它返回一个损坏的zip文件,这里是zipcontents函数中的代码我正在创建zip,有人可以帮我解决。在此先感谢。

public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException,
    IOException {

    ByteArrayOutputStream bout = new ByteArrayOutputStream();
    res.setContentType("application/zip");
    res.setHeader("Content-Disposition", "attachment; filename=output.zip;");

    fsep = File.separator;
    rootDir = new File(getServletContext().getRealPath("Projects" + File.separator + "amrurta"));
    File list[] = rootDir.listFiles();
    zos = new ZipOutputStream(bout);
    zipContents(list, rootDir.getName() + fsep);
    zos.close();
    res.getWriter().println(bout.toString());
}

public void zipContents(File[] file, String dir) {
    // dir - directory in the zip file
    byte[] buffer = new byte[4096];
    try {

        for (int i = 0; i < file.length; i++) { // zip files
            if (file[i].isFile()) {
                fis = new FileInputStream(file[i]);
                zos.putNextEntry(new ZipEntry(dir + file[i].getName()));
                // shows how its stored
                // System.out.println(dir+file[i].getName());
                int bytes_read;
                while ((bytes_read = fis.read(buffer)) != -1)
                    zos.write(buffer, 0, bytes_read);

                fis.close();
            }
        } // for

        // create empty dir if theres no files inside
        if (file.length == 1)
            zos.putNextEntry(new ZipEntry(dir + fsep)); // this part is erroneous i think

        for (int i = 0; i < file.length; i++) { // zip directories
            if (file[i].isDirectory()) {
                File subList[] = file[i].listFiles();

                // for dir of varying depth
                File unparsedDir = file[i];
                String parsedDir = fsep + file[i].getName() + fsep; // last folder
                while (!unparsedDir.getParentFile().getName().equals(rootDir.getName())) {
                    unparsedDir = file[i].getParentFile();
                    parsedDir = fsep + unparsedDir.getName() + parsedDir;
                }
                parsedDir = rootDir.getName() + parsedDir; // add input_output as root

                zipContents(subList, parsedDir);
            }
        } // for

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

3 个答案:

答案 0 :(得分:2)

代码中存在太多问题。主要的是:

  1. zos已声明为servlet实例变量。这是 not threadsafe 。它在多个请求之间共享。如果一个subseuent请求没有完成,你可能会覆盖前一个请求。

  2. 二进制ZIP内容已转换为bout.toString()的字符数据。这肯定会破坏二进制数据。您应该使用通常的InputStream#read() / OutputStream#write()循环将二进制数据写为二进制数据。

  3. 代码在每个条目的末尾都不会调用zos.closeEntry()

  4. 我认为#2是主要原因。您不需要ByteArrayOutputStream。这只是一种不必要的记忆力。只需将response.getOutputStream()包裹在ZipOutputStream

    ZipOutputStream output = new ZipOutputStream(response.getOutputStream());
    zipFiles(directory.listFiles(), output);
    output.close();
    

答案 1 :(得分:0)

另一个可能的原因是编译servlet的不同JVM版本的应用程序服务器和编译器。 非常罕见的问题,但很难理解。

答案 2 :(得分:0)

你可以像这样创造 ZipOutputStream zipOut = new ZipOutputStream(res. getOutputStream()); 您写入zip条目的每个zip条目都将流回调用者。