gpt4 book ai didi

java - Mac 上的 java.util.zip.*(提取)问题

转载 作者:行者123 更新时间:2023-11-30 09:50:12 25 4
gpt4 key购买 nike

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

对我来说 (Windows) 效果很好。我可以毫无问题地提取这些文件。但是我的一个使用 Mac 的 friend 在提取它们时出错,我不知道为什么。

这里是重要的代码:

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 得到一个字符串作为输出。

正如我所说.. 对我来说它很好用,但在 Mac 上不行。有什么不同吗?我猜..zip 是.zip。或者我应该为 Mac 创建压缩包 (.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 archiveunzip:  cannot find zipfile directory in one of ezdl_export_bibtex.zip or        ezdl_export_bibtex.zip.zip, and cannot find 

Here is a screen: http://img3.imageshack.us/i/ziperror.png. It shows the error: "Unable to unarchive - Error - 1 - Operation not permitted"

I also changed my code to:

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

还是一样的问题。

最佳答案

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

$ unzip -t java-puzzlers.zip | tail -1No 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也可能有帮助。

关于java - Mac 上的 java.util.zip.*(提取)问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5310977/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com