我正在尝试使用ZipInputStream将存档中的每个文件放在ArrayList中。我可以使用ZipInputStream吗?
我的主要目标是解压缩cbr / cbz文件(仅包含图像的档案(jpg / png)),我试图将每个图像放在ArrayList上,所以ZipInputStream到ArrayList是我的计划,最终让他们到位图,但是如果你可以直接从ZipInputStream将它们带到Bitmaps那就太棒了!
答案 0 :(得分:2)
最后,按照我原先的计划做了太多的记忆!相反,我最终只是一次只接受一个ZipEntry,但只有我想要的那个,每次都不需要遍历每个ZipEntry。
public Bitmap getBitmapFromZip(final String zipFilePath, final String imageFileInZip){
Bitmap result = null;
try {
ZipEntry ze = zipfile.getEntry(imageFileInZip);
InputStream in = zipfile.getInputStream(ze);
result = BitmapFactory.decodeStream(in);
} catch (IOException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
只需在开头快速循环以获取所有名称
public ArrayList<String> unzip() {
ArrayList<String> fnames = ArrayList<String>();
try {
FileInputStream fin = new FileInputStream(_zipFile);
ZipInputStream zin = new ZipInputStream(fin);
ZipEntry ze = null;
while ((ze = zin.getNextEntry()) != null) {
if(ze.isDirectory()) {
} else {
fnames.add(ze.getName()/*fname[fname.length - 1]*/);
zin.closeEntry();
}
}
zin.close();
} catch(Exception e) {
}
return fnames;
}