gpt4 book ai didi

java - 解压缩 zip 文件超过 100% 时的百分比计算!

转载 作者:行者123 更新时间:2023-11-29 10:04:58 30 4
gpt4 key购买 nike

我正在解压缩一个 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;
}

我该如何解决这个问题?

最佳答案

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

因此您的最终 % 将是:(未压缩数据的大小)/(zip 文件的大小)

使用 ze.getCompressedSize() 可能会获得更好的结果。

关于java - 解压缩 zip 文件超过 100% 时的百分比计算!,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11863970/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com