我有zip file(从ownCloud实例下载)并且无法使用java中的Java库(java版本" 1.8.0_66")解压缩。 util.zip。如果我尝试这样做,则抛出以下异常:
java.util.zip.ZipException: invalid LOC header (bad signature)
发布Linux'文件时命令,它输出以下内容:
so-example.zip: Zip archive data, at least v3.0 to extract
经过一些试验和错误后我发现,那些应该由" v2.0"无法解析的文件可以由Java处理而不会出现任何问题。
用于解包的代码的最小示例如下:
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Enumeration;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
public class PlaygroundZip{
public static void main(String[] args) {
String filename = "/tmp/so-example.zip";
byte[] buffer = new byte[1024];
try {
ZipFile zipFile = new ZipFile(filename);
Enumeration entries = zipFile.entries();
while(entries.hasMoreElements()) {
ZipEntry entry = (ZipEntry)entries.nextElement();
String currName = entry.getName();
System.out.println("File: " + currName);
if(entry.isDirectory()) {
new File(currName).mkdirs();
} else{
InputStream zis = zipFile.getInputStream(entry);
FileOutputStream fos = new FileOutputStream(currName);
int len;
while ((len = zis.read(buffer)) > 0) {
fos.write(buffer, 0, len);
}
fos.close();
}
}
zipFile.close();
} catch (IOException ioe) {
System.err.println("Unhandled exception:");
ioe.printStackTrace();
}
}
}
如何使用标准Java库或任何其他方法处理这些文件?
答案 0 :(得分:1)
到目前为止,解析这些文件的唯一方法是使用系统命令并使用"解压缩"命令行工具(Ubuntu 12.04 LTS,UnZip 6.00)。因为它在服务器应用程序中使用,所以即使远离优雅也是可接受的黑客。
Process p = Runtime.getRuntime().exec("unzip " + filename + " -d /tmp/mydir");