Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- private class Decompress extends AsyncTask<Void, Integer, Integer> {
- private String _zipFile;
- private String _location;
- private int per = 0;
- public Decompress(String zipFile, String location) {
- _zipFile = zipFile;
- _location = location;
- _dirChecker("");
- }
- protected Integer doInBackground() {
- try {
- ZipFile zip = new ZipFile(_zipFile);
- bar.setMax(zip.size());
- 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 {
- // Here I am doing the update of my progress bar
- per++;
- publishProgress(per);
- 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);
- }
- }
- }
- return totalSize;
- }
- protected void onProgressUpdate(Integer... progress) {
- bar.setProgress(per); //Since it's an inner class, Bar should be able to be called directly
- }
- protected void onPostExecute(Integer... result) {
- Log.i("Completed. Total size: "+result);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment