我想在android手机中解压缩.zip文件。下面的代码工作正常。
public static void unzip(File zipFile, File targetDirectory) throws IOException {
ZipInputStream zis = new ZipInputStream(
new BufferedInputStream(new FileInputStream(zipFile)));
try {
ZipEntry ze;
int count;
byte[] buffer = new byte[8192];
while ((ze = zis.getNextEntry()) != null) {
File file = new File(targetDirectory, ze.getName());
File dir = ze.isDirectory() ? file : file.getParentFile();
if (!dir.isDirectory() && !dir.mkdirs())
throw new FileNotFoundException("Failed to ensure directory: " +
dir.getAbsolutePath());
if (ze.isDirectory())
continue;
FileOutputStream fout = new FileOutputStream(file);
try {
while ((count = zis.read(buffer)) != -1)
fout.write(buffer, 0, count);
} finally {
fout.close();
}
/* if time should be restored as well
long time = ze.getTime();
if (time > 0)
file.setLastModified(time);
*/
}
} finally {
zis.close();
}
}
当我用参数调用此方法时,它成功解压缩文件,但问题是文件大小为55MB,在调用此方法应用程序之前工作正常但是当我调用此方法时,应用程序的几秒钟大约8-13秒需要解压缩应用程序卡住的文件,没有任何工作,但成功解压缩文件后,应用程序再次正常运行所以请帮助我,以便应用程序在解压缩文件时应该工作。 我也尝试在
中执行该方法runOnUiThread(new Runnable() {
});
但没有成功。
答案 0 :(得分:2)
如果应用程序冻结它通常是因为你在主/ UI线程上做了太多计算(注意runOnUiThread()
正是这样做的)。为避免这种情况,您必须在另一个线程或AsyncTask中调用您的方法。
快速而肮脏的修复方法是使用普通线程:
new Thread(new Runnable() {
public void run() {
unzip(zipFile, targetDirectory);
}
}).start();
或使用AsyncTask:
new AsyncTask<File, Void, Void>() {
protected Void doInBackground(File... files) {
unzip(files[0], files[1]);
return null;
}
protected void onPostExecute(Void result) {
// we're finished
}
}.execute(zipFile, targetDirectory);