如何在Android上保存AsyncTask的实例状态

发布于 2024-11-30 23:25:54 字数 530 浏览 0 评论 0原文

我的程序使用tcpdump命令记录网络流量,_initTask执行tcpdump命令。
当我退出应用程序时,我丢失了对象 _initTask,
返回应用程序后,我无法到达 _initTask 对象来停止任务。
如何保存_initTask实例状态?

protected InitTask _initTask;

public void OnClickRecord(View view) throws IOException {
    ....

    Log.e("AndroLoad class::OnClickRecord", "AsyncTask will start");
    _initTask = new InitTask();
    _initTask.execute(this);

    } else {
        ....
    }

}

我可以使用 onSaveInstanceState(Bundle)OnPause() 来做到这一点吗?如果是,请举例。

My program record network traffic by using tcpdump command, _initTask execute the tcpdump command.
I lose the object _initTask when I exit the application,
after back to the application I am not able to reach _initTask object to be able to stop the task.
How to save _initTask instance state?

protected InitTask _initTask;

public void OnClickRecord(View view) throws IOException {
    ....

    Log.e("AndroLoad class::OnClickRecord", "AsyncTask will start");
    _initTask = new InitTask();
    _initTask.execute(this);

    } else {
        ....
    }

}

Could I do that with onSaveInstanceState(Bundle) or OnPause() ? if yes, please provide an example.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别理我 2024-12-07 23:25:54

我的程序使用tcpdump命令记录网络流量

Android 不太适合运行命令行程序。

_initTask执行tcpdump命令

为什么? tcpdump 是一个命令。它在自己的进程中运行。它将无限期地运行,或者直到捕获到指定数量的数据包,或者直到您向它发送 SIGINT 或 SIGKILL。在这种情况下,AsyncTask 没有任何意义。

当我退出应用程序时,我丢失了对象 _initTask

当然。您应该在派生该进程的任何组件的 onDestroy() 中停止 tcpdump

如何保存_initTask实例状态?

你不知道。您应该在派生该进程的任何组件的 onDestroy() 中停止 tcpdump

My program record network traffic by using tcpdump command

Android is not well-suited for running command-line programs.

_initTask execute the tcpdump command

Why? tcpdump is a command. It runs in its own process. It will run indefinitely, or until a specified number of packets are caught, or until you send a SIGINT or SIGKILL to it. An AsyncTask makes no sense in this scenario.

I lose the object _initTask when I exit the application

Of course. You should be stopping tcpdump in onDestroy() of whatever component forked that process.

How to save _initTask instance state?

You don't. You should be stopping tcpdump in onDestroy() of whatever component forked that process.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文