0

我正在尝试使用各种 for 循环下载一些 png 文件。请问在我的情况下,我究竟如何使用 publishProgress() 方法?

这是我的代码:

protected String doInBackground(String... params) {


    for(PlaceDetails place : places){
        for(int v = 14; v <=16; v++){   
            for (int y = 0; y <= placeBottomLeft.getYTile(); y++){
                for(int x = placeTopLeft.getXTile(); x <= placeBottomRight.getXTile(); x++){
                    try {
                        //Download some stuff here
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }

            }
        }
    }

    for (int w = zoom -1 ; w <= zoom+1; w++){
        for (int y = topLeft.getYTile(); y <= bottomLeft.getYTile(); y++){
            for(int x = topLeft.getXTile(); x <= bottomRight.getXTile(); x++){
                try {
                    //Download some stuff here again
                } catch (Exception e) {
                    Log.e("URL::: ERROR", e.getMessage());
                    e.printStackTrace();
                }
            }

        }
    }
    return null;
}

如您所见,我试图在 doInBackground 方法中的 2 个单独的 for 循环中下载内容。然而,我看到的大多数示例只是让线程休眠并使用 for 循环计数器编号作为 publishProgress() 方法的整数。在这种情况下我应该如何使用它?谢谢!

编辑:

为了进一步澄清,我想知道是否有可能让进度更新包括在 onPostExecuteMethod() 中完成的事情。

protected void onPostExecute (String result){
    File newFileDir = new File(Environment.getExternalStorageDirectory().toString() + "/Qiito Offline/offlineMap");
    File fileDir = new File(Environment.getExternalStorageDirectory().toString() 
            + "/test");
    try {
        Log.e("Starting :: ", newFileDir.getPath());
        File newFile = new File(newFileDir, "" + tID + ".zip");
        newFileDir.mkdirs();
        OutputStream output = new FileOutputStream(newFile);
        ZipOutputStream zipoutput = new ZipOutputStream(output);
        zip(fileDir, fileDir, zipoutput);
        zipoutput.close();
        output.close();
        deleteDirectory(fileDir);
        mNotificationHelper.completed(); //method I used for my NotificationHelper to inform that the entire process is completed
    } catch (IOException excep) {
        Log.e("ERROR!!" , excep.getLocalizedMessage());
    }
}

在 postExecute() 中,我试图将 png 文件压缩到另一个文件夹中,然后删除所有 png 文件。进度条也能包含这个吗?否则,我将只负责跟踪下载 png 文件。

4

1 回答 1

1

将此代码写入doInBackground()

int totalCount  = 0; // total images count
int counter = 0; // current downloaded files count

// images - ArrayList with images
totalCount = images.size();

// download and publish progress
   int imagesCount = images.size(); 
   for (int i = 0; i < imagesCount; i++) {
            // download image

            publishProgress((int) ((counter++ / (float) totalCount) * 100));
    }
于 2012-12-26T09:53:15.763 回答