使用java.util.zip在Mac上出现问题。*(提取)

时间:2011-03-15 11:24:02

标签: java macos zip extract

我制作了一个程序,并为文档(条目)创建了一个导出函数。 程序:用户已收藏文件。存在2-3种策略 (BibTex,RIS,HTML)用户可以选择导出他的文档。 对于每个策略,都会生成一个包含所有文档的新.zip文件。 创建的.zip存档通过电子邮件发送给用户。

对我来说(Windows)它很棒。我可以毫无问题地提取这些档案。 但是我的朋友,正在使用Mac,在提取它们时会出错,我不知道为什么。

这里有重要的代码:

for ( String strategy : strategies ) {
// Coderedundanz
// Jede Strategie benötigt eigene Parameter
if (strategy.equals("BibTex")) {
    _zipName = "ezdl_export_bibtex";
    _fileExtension = ".bib";
    _strategy = csf.bibTex;
}
else if (strategy.equals("RIS")) {
    _zipName = "ezdl_export_ris";
    _fileExtension = ".ris";
    _strategy = csf.ris;
}
else if (strategy.equals("HTML")) {
    _zipName = "ezdl_export_html";
    _fileExtension = ".html";
    _strategy = csf.html;
}
else {
    _zipName = _zipExtension = "";
    _fileExtension = "";
    _strategy = null;
}

// Gibt es eine korrekte Strategie?
if ( !_zipName.equals("") && !_fileExtension.equals("") && _strategy != null) {
    // 1. .zip Datei generieren
    // 2. Für jedes TextDocument eine eigene Datei erstellen
    // 3. Datei in die .zip Datei einfügen
    // 4. .zip Datei schließen und in die E-Mail hinzufügen
    File file = File.createTempFile(_zipName + _zipExtension, ".tmp");
    ZipOutputStream out = new ZipOutputStream(new FileOutputStream(file));
    out.setLevel(6);
    for ( TextDocument document : documents ) {
        out.putNextEntry(new ZipEntry( document.getOid() + _fileExtension));

        String temp = _strategy.print ( (TextDocument) document).asString().toString();

        out.write( temp.getBytes() );
        out.closeEntry();
    }

    out.finish();
    out.close();

    PreencodedMimeBodyPart part_x = new PreencodedMimeBodyPart("base64");
    part_x.setFileName(_zipName + _zipExtension);
    part_x.setContent(new String(Base64Coder.encode( getBytesFromFile (file))), "text/plain");
    multi.addBodyPart(part_x);

    if (file.exists())
        file.delete();

您会看到每个策略都在创建自己的存档。 程序循环遍历文档(TextDocument) 并使用_strategy.print获取String作为输出。

正如我所说..对我来说它很有效,但不适用于Mac。 有什么不同吗?我猜.. .zip是.zip。 或者我应该为Mac创建tarball(.tar.gz)吗?

修改

serena:tmp3 alex$ unzip ezdl_export_bibtex.zip 
Archive:  ezdl_export_bibtex.zip
  End-of-central-directory signature not found.  Either this file is not
  a zipfile, or it constitutes one disk of a multi-part archive.  In the
  latter case the central directory and zipfile comment will be found on
  the last disk(s) of this archive.
note:  ezdl_export_bibtex.zip may be a plain executable, not an archive
unzip:  cannot find zipfile directory in one of ezdl_export_bibtex.zip or
        ezdl_export_bibtex.zip.zip, and cannot find 

这是一个屏幕:http://img3.imageshack.us/i/ziperror.png。它显示错误:“无法取消归档 - 错误 - 1 - 不允许操作”

我还将代码更改为:

out.write( temp.getBytes() );
out.flush();
out.closeEntry();

但仍然是同样的问题。

2 个答案:

答案 0 :(得分:1)

flush()来电之前尝试在输出流上调用closeEntry()

答案 1 :(得分:1)

虽然它没有直接解决您的问题,但您可以使用命令行上的-t选项验证zip文件的完整性。

$ unzip -t java-puzzlers.zip | tail -1
No errors detected in compressed data of java-puzzlers.zip.

此外,您可以检查父目录的权限,沿路径向上走,直至看到问题。

$ ls -ld ..
drwxr-xr-x@ 26 trashgod  staff  884 Jan 17  2010 ..
$ ls -ld ../..
drwx------+ 23 trashgod  staff  782 Dec 17 17:15 ../..

附录:如果它“与编码有关”,我总是从Joel Spolsky经常引用article这个主题开始。此answer也可能有所帮助。