我正在提取一个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;
}
我该如何解决这个问题?
答案 0 :(得分:3)
finalSize = (int) new File(zipFile).length();
是压缩文件的大小,而ze.getSize();
则返回未压缩数据的大小。
所以你的最终%将是:(未压缩数据的大小)/(zip文件的大小)
使用ze.getCompressedSize()
可能会获得更好的结果。
答案 1 :(得分:3)
您必须在读取zip文件时计算字节数,以便计算百分比...
答案 2 :(得分:2)
finalSize = (int) new File(zipFile).length();
这不会为您提供扩展的zip文件的大小,它会为您提供zip文件本身的大小。
答案 3 :(得分:1)
ZipEntry.getSize()
返回该条目的未压缩大小。试试ZipEntry.getCompressedSize()
。