如何调试AsyncTask的doInBackground代码

时间:2011-08-13 14:50:35

标签: android eclipse android-asynctask

我设置了断点,但它们似乎被忽略(或从未见过)。

我的代码如下。我正在尝试将sql db备份到SD卡。

当我在eclipse中运行它(不是调试模式)时,我从onPreExecute获取消息,然后很快接到来自onPostExecute的消息。

我在ExportDatabaseFileTask的几乎每一行都设置了BreakPoints。

当我在eclipse中运行它(在调试模式下)时,我停在onPreExecute的断点处,然后当我走得更远时,调试器进入的非常接近的行是:

mDbHelper.open();

然后我逐步完成剩下的正常代码,并且AVD显示来自onPreExecute的消息,它显然会保持不变。

我没有看到任何突破的行:

doInBackground onPostExecute 的CopyFile

所以,我必须恭敬地不同意我没有明确指出或没有被执行的评论。所以,我将重新提出我的问题:你如何调试(STEP THROUGH)AsyncTask的doInBackground代码?

        case BACKUP_ID:
            if (ScoreAGame.this.isExternalStorageAvail()) {
                mDbHelper.close();
                new ExportDatabaseFileTask().execute();
                mDbHelper.open();
            } else {
                Toast.makeText(ScoreAGame.this, "External storage is not available, unable to export data.",
                           Toast.LENGTH_SHORT).show();
            }
            return true;
        case RESTORE_ID:
            selectCourse();
            return true;
    }

    return super.onMenuItemSelected(featureId, item);
}

private boolean isExternalStorageAvail() {
    return Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED);
}

private class ExportDatabaseFileTask extends AsyncTask<String, Void, Boolean> {
    private final ProgressDialog dialog = new ProgressDialog(ScoreAGame.this);

    // can use UI thread here
    protected void onPreExecute() {
        this.dialog.setMessage("Exporting database...");
        this.dialog.show();
    }

    // automatically done on worker thread (separate from UI thread)
    protected Boolean doInBackground(final String... args) {

        File dbFile =
            new File(Environment.getDataDirectory() + "/data/com.discgolf/databases/discgolfdb.db");

        File exportDir = new File(Environment.getExternalStorageDirectory(), "discgolfbackup");
        if (!exportDir.exists()) {
            exportDir.mkdirs();
        }
        File file = new File(exportDir, dbFile.getName());

        try {
            file.createNewFile();
            this.copyFile(dbFile, file);
            return true;
        }
        catch (IOException e) {
            Log.e(TAG, e.getMessage(), e);
            return false;
        }
    }

    // can use UI thread here
    protected void onPostExecute(final Boolean success) {
        if (this.dialog.isShowing()) {
            this.dialog.dismiss();
        }
        if (success) {
            Toast.makeText(ScoreAGame.this, "Export successful!", Toast.LENGTH_SHORT).show();
        } else {
            Toast.makeText(ScoreAGame.this, "Export failed", Toast.LENGTH_SHORT).show();
        }
    }

    void copyFile(File src, File dst) throws IOException {
        FileChannel inChannel = new FileInputStream(src).getChannel();
        FileChannel outChannel = new FileOutputStream(dst).getChannel();
        try {
            inChannel.transferTo(0, inChannel.size(), outChannel);
        }
        finally {
            if (inChannel != null) {
                inChannel.close();
            }
            if (outChannel != null) {
                outChannel.close();
            }
        }
    }

}

5 个答案:

答案 0 :(得分:41)

检查此How do I use the Eclipse debugger in an AsyncTask when developing for Android?

将以下代码片段放在doInBackground()

的开头
if(android.os.Debug.isDebuggerConnected())
    android.os.Debug.waitForDebugger();

然后当你在该线程中设置断点时,eclipse会找到它。

礼貌:sargas

答案 1 :(得分:4)

如果忽略它们,那么它可能就是这两个中的一个:

  1. 您不以调试模式运行项目。
  2. 在执行过程中,你永远不会真正触及这些界限。

答案 2 :(得分:4)

在你的doInBackground()中添加以下内容......`

    protected Integer doInBackground(String... params) {
    // for debug worker thread
    if(android.os.Debug.isDebuggerConnected())
        android.os.Debug.waitForDebugger();

    // create the file with the given file path
    File file = new File(params[0]);

    // enter rest of the code here..
}

`

答案 3 :(得分:1)

如果另一个Async Task在后台运行,那么可能是新的一个跳过运行doinbackground方法,所以尝试运行如下:

(new ExampleAsyncTask()).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR);

答案 4 :(得分:0)

我在Android Studio中遇到过类似的问题。对我来说,这是由于Proguard在调试期间处于活动状态。在缩小之后,Proguard弄乱了线号。您可以从build.gradle

中删除minfyEnabled true来停用Proguard