我在 Android 中解压缩文件时遇到问题。这是代码片段:
public void unzip() {
try {
FileInputStream fin = new FileInputStream(_zipFile);
BufferedInputStream in = new BufferedInputStream(fin);
ZipInputStream zin = new ZipInputStream(in);
ZipEntry ze = null;
while ((ze = zin.getNextEntry()) != null) {
Log.v("Decompress", "Unzipping " + ze.getName());
if(ze.isDirectory()) {
_dirChecker(ze.getName());
} else {
FileOutputStream fout = new FileOutputStream(_location + ze.getName());
BufferedOutputStream out = new BufferedOutputStream(fout);
byte[] buffer = new byte[1024];
int length;
while ((length = zin.read(buffer,0,1024)) >= 0) {
out.write(buffer,0,length);
}
/* while ((length = zin.read(buffer))>0) {
out.write(buffer, 0, length);
}*/
/*for (int c = zin.read(); c != -1; c = zin.read()) {
fout.write(c);
}*/
zin.closeEntry();
fout.close();
}
}
zin.close();
} catch(Exception e) {
Log.e("Decompress", "unzip", e);
}
}
较小的文件(小于 10kB)像空文件一样解压缩 - 大小为 0(html 文件,.jpg)。其他文件没问题。如果我使用相同的代码,但没有缓冲区,所有文件都可以 - 当然,没有缓冲区的解压缩是不可能的,因为它运行时间太长。文件存储在真实设备上的 SD 卡上。我已经尝试过设置更小的缓冲区大小(甚至是新字节 [2])。提前致谢...