1

我尝试创建一个 AsyncTask 下载 Zip 文件并在通知中显示下载进度。

我打电话:

new MyAsyncTask.DownloadTask(context, position,list).execute(0);

这指的是:

import java.io.BufferedInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.URL;
import java.net.URLConnection;
import java.util.ArrayList;
import java.util.HashMap;

import android.annotation.SuppressLint;
import android.content.Context;
import android.os.AsyncTask;
import android.os.Environment;
import android.util.Log;
import android.widget.Button;

public class DownloadTask extends AsyncTask<Integer, Integer, Void> {
    private NotificationHelper mNotificationHelper;

    public int position;
    public ArrayList<HashMap<String, String>> list;

    public DownloadTask(Context context,int position, ArrayList<HashMap<String, String>> list) {
        mNotificationHelper = new NotificationHelper(context);
        this.position = position;
        this.list = list;
    }

    protected void onPreExecute() {
        mNotificationHelper.createNotification();
    }

    @SuppressLint("NewApi")
    @Override
    protected Void doInBackground(Integer... integers) {

            int count;
            try {
                URL url = new URL("http://myurl/test.zip");
                URLConnection conection = url.openConnection();
                conection.connect();
                int lenghtOfFile = conection.getContentLength();
                Log.d("Size: ", Integer.toString(lenghtOfFile));

                InputStream input = new bufferedInputStream(url.openStream(),8192);

                OutputStream output = new FileOutputStream(Environment.getExternalStorageDirectory().getPath()+ "/"+ list.get(position).get("Name") + ".zip");

                byte data[] = new byte[1024];

                long total = 0;

                while ((count = input.read(data)) != -1) {
                    total += count;
                    publishProgress((int) ((total * 100) / lenghtOfFile));
                    output.write(data, 0, count);
                }

                output.flush();
                output.close();
                input.close();

            } catch (Exception e) {
                Log.e("Error: ", e.getMessage());
            }

        return null;
    }

    @Override
    protected void onProgressUpdate(Integer... progress) {
        mNotificationHelper.progressUpdate(progress[0]);
    }

    @Override
    protected void onPostExecute(Void result) {
        mNotificationHelper.completed();
    }
}

它似乎工作得很好,但是当我单击按钮运行 AsyncTask 时,所有系统都在变慢,并且在下载完成之前无法再使用平板电脑。(当 zip 为 100mo 时不是很有用)。

另外,我想让取消下载成为可能,但是当我尝试从我的主要活动中执行它时(使用类似这样MyAsynctask.cancel(true);的东西:)应用程序崩溃。所以我想知道是否有适当的方法来做到这一点(也许从通知中提供最佳用户体验)。

编辑:

延迟的问题得到了解决,这要归功于更新时间不太重要的 buptcoder:

while ((count = input.read(data)) != -1) {
    total += count;
    if ((count % 10) == 0) {
        publishProgress((int) ((total * 100) / ;lenghtOfFile));
    }
    output.write(data, 0, count);
}

我仍在寻找取消通知的方法。

4

2 回答 2

1

你更新通知太快了。您必须降低更新频率。

于 2013-05-03T09:36:04.330 回答
0
new MyAsyncTask.DownloadTask(context, position,list).execute(0);

你没有类的实例,所以你不能取消它。

MyAsyncTask myTask = new MyAsyncTask.DownloadTask(context, position,list);
myTask.execute(0);
myTask.cancel(true);
于 2013-05-03T09:55:46.143 回答