Hey, I'm trying to unzip a file using this class:
public class Decompress {
private String _zipFile;
private String _location;
public Decompress(String zipFile, String location) {
_zipFile = zipFile;
_location = location;
_dirChecker("");
}
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);
}
}
private void _dirChecker(String dir) {
File f = new File(_location + dir);
if(!f.isDirectory()) {
f.mkdirs();
}
}
}
Code in Main.java
String zipFile = Environment.getExternalStorageDirectory() + "/tmp.zip";
String unzipLocation = Environment.getExternalStorageDirectory() + "/tmp/";
Decompress d = new Decompress(zipFile, unzipLocation);
d.unzip();
The problem is in this line: while ((ze = zin.getNextEntry()) != null) {
zin.getNextEntry() is always null! Can anyone tell me how to fix this? Thanks.