0
java.util.zip.ZipInputStream zis = new java.util.zip.ZipInputStream(new BufferedInputStream(is));

    java.util.zip.ZipEntry entry;
    new File(outdir+ File.separator+"changelog").delete();
    new File(outdir+ File.separator+"media").delete();
    try {
        while ((entry = zis.getNextEntry()) != null) {

            File of = new File(outdir + File.separator + entry.getName());

            if (entry.isDirectory()) {
                of.mkdirs();
                continue;
            } else {
                File xx = new File(of.getParent());
                if (!xx.exists()) {
                    Stack<String> todo = new Stack<String>();
                    do {
                        todo.push(xx.getAbsolutePath());
                        xx = new File(xx.getParent());
                    } while (!xx.exists());
                    while (todo.size() > 0) {
                        xx = new File(todo.pop());
                        if (!xx.exists()) {
                            xx.mkdirs();
                        }
                    }
                }
            }

            BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(of), buffer.length);

            cpio(new BufferedInputStream(zis), bos, "unzip:" + entry.getName());

            bos.flush();
            bos.close();
        }
    } catch (IllegalArgumentException e) {
        // problem with chars in entry name likely
    }catch(Exception e){
        System.out.println(e+"Srikanth");
    }
    zis.close();

}

entry.isDirectory()总是返回 false,所以它创建的是文件而不是目录。问题是什么?

4

2 回答 2

0

isDirectory 根本不适用于使用 Windows 标准选项“发送到/压缩文件”压缩的文件

zip 的格式不同于使用 7zip 或 Winzip 等工具生成的格式。(很高兴有一个标准的存档压缩:D)

于 2015-04-17T14:20:47.120 回答
0

来自ZipInputStream的ZipEntry用 \ 表示文件末尾的空目录,用 / 表示元素的目录

所以entry.isDirectory()不适用于空目录。

ZipFile中的ZipEntry工作正常。我认为ZipInputStreamZipEntry行为之间存在差异。

于 2012-07-05T06:50:11.427 回答