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]でも)。前もって感謝します...