0

我尝试了多种方法在 Java/Groovy 中创建这个 zip 文件。我从各种博客/帖子中尝试的前几种方法导致损坏的 zip 文件无法打开。所以,我尝试了这个(如下),它看起来很有希望。sysouts 报告传递给 FileInputStream 的有效文件路径。我不确定是否是传递给 ZipOutputStream 的 FQ 路径导致了问题。无论哪种方式,下面都是代码,它会创建一个小的 (188kb) zip 文件(没有条目)。有什么建议么?

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Set;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;

class FileZipper {

    public static void makeZip(Set fullyQualifiedFileNames, String zipFileName, String outDir) throws IOException, FileNotFoundException
    {
        // These are the files to include in the ZIP file
        Object[] filenames = fullyQualifiedFileNames.toArray();
        String fileSeparator =  (String) System.getProperties().get("file.separator");

        // Create a buffer for reading the files
        byte[] buf = new byte[1024];

        // Create the ZIP file
        String outFilename = outDir + fileSeparator +zipFileName;
        FileOutputStream fos = new FileOutputStream(outFilename);
        ZipOutputStream zos = new ZipOutputStream(fos);
        System.out.println("Zipping to file " +outFilename);
        // Compress the files

        for (Object fileName: filenames)
        {
            System.out.println("Adding file: " + fileName);
            FileInputStream fis = new FileInputStream((String)fileName);

            // Add ZIP entry to output stream.
            String[] nodes = ((String)fileName).split("[/[\\\\]]");
            String zipEntry = nodes[nodes.length-1];
            System.out.println("Adding Zip Entry: " + zipEntry);
            zos.putNextEntry(new ZipEntry((String)fileName));

            // Transfer bytes from the file to the ZIP file
            int len;
            int totalBytes = 0;
            while ((len = fis.read(buf)) > 0) 
            {
                totalBytes += len;
                zos.write(buf, 0, len);
            }
            System.out.println("Zipped " +totalBytes +" bytes");
            // Complete the entry
            zos.closeEntry();
            fis.close();
        }

        // Complete the ZIP file
        zos.close();
        fos.close();
    }
}
4

3 回答 3

8

如果您使用的是 Groovy,最简单的方法是使用AntBuilder

new AntBuilder().zip(
   destfile: "myfile.zip",
   basedir: "baseDir")

或从 Groovy 1.8 开始:

ant.zip(destfile: 'file.zip', basedir: 'src_dir')
于 2012-07-13T19:19:34.630 回答
1

您是否尝试过显式关闭底层 FileOutputStream 以确保所有数据都已刷新到磁盘?

FileOutputStream fos = new FileOutputStream(outFilename);
ZipOutputStream zos = new ZipOutputStream(fos);
...
zos.Close();
fos.Close();
于 2012-07-13T19:10:57.723 回答
0

我在本地运行您的代码,创建然后打开一个 zip 文件没有问题。

但是,我有时会在使用默认 Java 压缩实用程序时遇到奇怪的问题,因此我开始使用 Apache Commons 压缩,并且从那时起就毫不费力地使用了它。

查看http://commons.apache.org/compress/index.html了解基本概述,查看http://commons.apache.org/compress/examples.html了解具体示例。

于 2012-07-13T19:26:44.957 回答