尝试使用java.util.zip / zip4j解压缩时清空文件夹

时间:2016-11-15 12:02:30

标签: java file zip compression zip4j

我收到了zip扩展名的压缩文件。 我无法使用Windows资源管理器直接打开它。 我可以使用7Zip提取它,它会抛出一些错误,但文件仍然按预期解压缩。 我可以使用winrar提取它,没有错误,文件按预期解压缩。

然后我尝试使用java.util.unzip / zip4j解压缩。

java.util.zip代码:

    public static void unzip(String zipFilePath,
                         String destDirectory) throws IOException {
    File destDir = new File(destDirectory);
    if (!destDir.exists()) {
        destDir.mkdir();
    }
    ZipInputStream zipIn =
        new ZipInputStream(new FileInputStream(zipFilePath));
    ZipEntry entry = zipIn.getNextEntry();
    // iterates over entries in the zip file
    while (entry != null) {
        String filePath = destDirectory + File.separator + entry.getName();
        if (!entry.isDirectory()) {
            // if the entry is a file, extracts it
            extractFile(zipIn, filePath);
        } else {
            // if the entry is a directory, make the directory
            File dir = new File(filePath);
            dir.mkdir();
        }
        zipIn.closeEntry();
        entry = zipIn.getNextEntry();
    }
    zipIn.close();
}

/**
 * Extracts a zip entry (file entry)
 * @param zipIn
 * @param filePath
 * @throws IOException
 */
private static void extractFile(ZipInputStream zipIn,
                                String filePath) throws IOException {
    BufferedOutputStream bos =
        new BufferedOutputStream(new FileOutputStream(filePath));
    byte[] bytesIn = new byte[BUFFER_SIZE];
    int read = 0;
    while ((read = zipIn.read(bytesIn)) != -1) {
        bos.write(bytesIn, 0, read);
    }
    bos.close();
}

使用上面的代码,没有错误发生,但我得到一个空文件夹。

zip4j代码:

        String zipFilePath = "C:\\Juw\\JR\\file\\output\\020030214112016.zip";
    //String zipFilePath = "C:\\Juw\\JR\\file\\output\\myFile.zip";
    String destDirectory = "C:\\Juw\\JR\\file\\output\\targetUnzip";

    try {
        ZipFile zipFile = new ZipFile(zipFilePath);
        zipFile.extractAll(destDirectory);

    } catch (Exception ex) {
        ex.printStackTrace();
    }

并且有例外: net.lingala.zip4j.exception.ZipException:找不到zip标头。可能不是拉链文件

如果我尝试使用winrar解压缩文件,然后使用内置zip功能的Windows压缩它。我可以使用我的代码成功解压缩它。我的和客户给我的大小不同。我的是508kb,另一个是649kb。

问题是: - 是否有任何使用/作为强大的winrar的java库,可以无错误地提取压缩文件? - 解决此案的最佳做法是什么?

非常感谢提前:)

1 个答案:

答案 0 :(得分:0)

感谢所有帮助我的受访者。

所以情况是这个gzip文件(名为.zip扩展名)在文件末尾有一个空字符串。所以它像我之前的帖子中提到的那样抛出错误。使用我从同事那里获得的以下代码,问题就解决了。我发布它,以便其他用户可以在将来使用它。

public void gunzipIt(){

 byte[] buffer = new byte[1024];
 boolean isValid = true;

 try{

     GZIPInputStream gzis =
        new GZIPInputStream(new FileInputStream(INPUT_GZIP_FILE));

     FileOutputStream out =
        new FileOutputStream(OUTPUT_FILE);

    while (isValid) {

        int len;

        try{
            len = gzis.read(buffer);
        }catch(Exception ex){
            len = 0;
            isValid = false;
        }

        if (len > 0) {
            out.write(buffer, 0, len);
        }else{

            isValid = false;
        }
    }

    gzis.close();
    out.close();

    System.out.println("Done");

}catch(IOException ex){
   ex.printStackTrace();
}

}