我檢查過java api文檔,它表示getNextEntry()
讀取下一個ZIP文件條目並將流定位在條目數據的開頭。getNextEntry()是做什麼的?
這是什麼意思「讀取下一個zip文件」?爲什麼「下一個」?
我有這樣的一段代碼,這是什麼線ze = zin.getNextEntry()
點?
public void unzip() {
try {
FileInputStream fin = new FileInputStream(_zipFile);
ZipInputStream zin = new ZipInputStream(fin);
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());
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);
}
}
你可以檢查我的更新問題?爲什麼這個示例代碼在開始時會放入'ze = zin.getNextEntry()'?所以它開始從zip中的第二個文件解壓縮? – Jolin 2013-02-16 20:04:24