无法使用Zip4J在java中解压缩

时间:2013-01-16 08:19:54

标签: java zip

您好我来自中国另一岸的太平洋。 请原谅我的基本英语。 筛选国外网站会带来更多问题。

在我目前的项目中,我使用的是zip4j,但是出现了一个问题。这是我的代码:

public static File [] unzip(File zipFile, String dest, String passwd) throws ZipException {
    ZipFile zFile = new ZipFile(zipFile);
    zFile.setFileNameCharset("GBK");
    if (!zFile.isValidZipFile()) {
        throw new ZipException("压缩文件不合法,可能被损坏.");
    }
    File destDir = new File(dest);
    if (destDir.isDirectory() && !destDir.exists()) {
        destDir.mkdir();
    }
    if (zFile.isEncrypted()) {
        zFile.setPassword(passwd.toCharArray());
    }
    zFile.extractAll(dest);

    List<FileHeader> headerList = zFile.getFileHeaders();
    List<File> extractedFileList = new ArrayList<File>();
    for(FileHeader fileHeader : headerList) {
        if (!fileHeader.isDirectory()) {
            extractedFileList.add(new File(destDir,fileHeader.getFileName()));
        }
    }
    File [] extractedFiles = new File[extractedFileList.size()];
    extractedFileList.toArray(extractedFiles);
    return extractedFiles;
}

在超过一定数量(我的文件2000)压缩包文件时出现问题。 我使用了myeclipse开发工具和tomcat服务器。

我在myeclipse中使用了断点,并没有遇到任何错误。 在没有添加断点的情况下,我遇到了直接操作错误:

net.lingala.zip4j.exception.ZipException: Compressed file is not valid, can be damaged.
    at com.ninemax.cul.util.CompressUtil.unzip(CompressUtil.java:68)
    at com.ninemax.cul.util.CompressUtil.unzip(CompressUtil.java:38)
    at com.ninemax.cul.service.impl.SysShangChuanWenWuService.writeDataToDatabase(SysShangChuanWenWuService.java:42)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:311)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:183)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:150)
    at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:110)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202)
    at $Proxy48.writeDataToDatabase(Unknown Source)
    at com.ninemax.cul.action.web.UserUploadAction.uploadSuccess(UserUploadAction.java:93)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)

1 个答案:

答案 0 :(得分:0)

用于创建您要提取的ZIP文件的工具是什么?

很可能你的zip文件已损坏。请尝试使用Winzip(Windows)或GUnzip(UNIX)等解压缩工具解压缩它,检查它是否已损坏。

如果它没有损坏,那么很可能使用Zip4J不支持的加密方法对zip进行加密和密码保护。例如,Zip4J支持AES-256位Winzip加密/解密,但不支持AES-256 PKZIP加密/解密。