1

我正在提取一个 zip 文件,问题是百分比计算超过 100%,几乎达到 111%。这是代码:

    boolean UNZipFiles() {
    byte[] buffer = new byte[4096];
    int length;
    float prev = -1; // to check if the percent changed and its worth updating the UI
    int finalSize = 0;
    float current = 0;

    String zipFile = PATH + FileName;

    FileInputStream fin = new FileInputStream(zipFile);
    ZipInputStream zin = new ZipInputStream(fin);

    finalSize = (int) new File(zipFile).length();

    ZipEntry ze = null;

    while ((ze = zin.getNextEntry()) != null) {

        current += ze.getSize();

        if (ze.isDirectory())
            dirChecker(ze.getName());
        else {
            FileOutputStream fout = new FileOutputStream(PATH + ze.getName());
            while ((length = zin.read(buffer)) > 0)
                fout.write(buffer, 0, length);

            if (prev != current / finalSize * 100) {
                prev = current / finalSize * 100;
                UpdatePercentNotificationBar((int) prev);
            }
            zin.closeEntry();
            fout.close();
        }

    }

    zin.close();

    return true;
}

我怎样才能解决这个问题?

4

4 回答 4

3

finalSize = (int) new File(zipFile).length();是压缩文件的大小,而ze.getSize();返回未压缩数据的大小。

所以你最终的 % 将是:(未压缩数据的大小)/(zip 文件的大小)

你可能会得到更好的结果ze.getCompressedSize()

于 2012-08-08T11:57:59.203 回答
3

您必须在读取 zip 文件时计算字节数才能计算百分比...

于 2012-08-08T12:01:54.393 回答
2
finalSize = (int) new File(zipFile).length();

这不会为您提供扩展 zip 文件的大小,而是为您提供 zip 文件本身的大小。

于 2012-08-08T11:58:08.733 回答
1

返回该条ZipEntry.getSize()目的未压缩大小。试试ZipEntry.getCompressedSize()

于 2012-08-08T12:02:13.293 回答