1

你好,我来自中国对岸的太平洋。请原谅我的初级英语。对外国网站的筛选会导致更多问题。

在我当前的项目中,我使用的是 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)
4

1 回答 1

0

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

很可能您的 zip 文件已损坏。请尝试使用 Winzip (Windows) 或 GUnzip (UNIX) 之类的解压缩工具对其进行解压缩,以检查它是否已损坏。

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

于 2013-01-16T08:44:06.890 回答