gpt4 book ai didi

java - 在异步任务之后运行代码

转载 作者:行者123 更新时间:2023-12-01 12:52:36 24 4
gpt4 key购买 nike

因此,我正在寻找一种方法,仅运行异步任务完成后运行的代码块。该代码与 Request.executeAsync(); 相关在 Android 版 facebooksdk 中。我将用于解释的代码是:

public class Home extends Activity {

TextView welcomeTextView;
private JSONObject userProfile;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home);
userProfileFetched = false;

welcomeTextView = (TextView)findViewById(R.id.welcome);
populateUserProfile();
Log.d("USER_PROFILE", userProfile.toString()); //NullPointerException occurs here
}

private void populateUserProfile() {
Request.newMeRequest(Session.getActiveSession(), new Request.GraphUserCallback() {
@Override
public void onCompleted(GraphUser user, Response response) {
userProfile = response.getGraphObject().getInnerJSONObject();
}
}).executeAsync();
}
}

上面带有注释的行指向我的应用程序意外关闭的行。当我第一次开始 Activity 时 onCreate方法是用一些内务管理的东西来调用的。然后是一个函数populateUserProfile()被调用执行 me异步请求。如果我记录 response.getGraphObject().getInnerJSONObject().toString()位于 onCompleted()函数,我可以清楚地看到我正在寻找的完美结果,即登录用户的 JSONObject,但是,如上面的代码所示,如​​果我将该函数的返回值分配给 userProfile变量,然后在 onCreate() 中调用函数后将其记录下来方法,然后我的应用程序意外停止,并在 Log 处抛出 NullPointerException线。

我知道发生这种情况是因为 me当我记录 userProfile 时,请求尚未完成JSONObject,这就是为什么它还没有分配给任何东西,所以我需要知道如何等待 onCompleted populateUserProfile()中的方法函数使得 userProfile对象可以成功分配给登录用户的信息吗?

也就是说,我怎么才能等待me的异步任务呢?请求完成然后登录 userProfile进入 LogCat?

希望我说得清楚,并期待得到解释性答案。

最佳答案

我想到的一个解决方案是使用 AsyncTask < T, T, T>然后在 onPostExecute 中调用您的函数方法。

编辑:这是来自 developers 的示例,不要看它做什么,只要理解概念就可以了。在 doInBackground方法所有计时工作完成,完成后调用 onPostExecute ,因此您可以放心地假设在其中所有 Internet 工作均已完成并且您可以继续。

 private class DownloadFilesTask extends AsyncTask<URL, Integer, Long> {
protected Long doInBackground(URL... urls) {
int count = urls.length;
long totalSize = 0;
for (int i = 0; i < count; i++) {
totalSize += Downloader.downloadFile(urls[i]);
publishProgress((int) ((i / (float) count) * 100));
// Escape early if cancel() is called
if (isCancelled()) break;
}
return totalSize;
}

protected void onProgressUpdate(Integer... progress) {
setProgressPercent(progress[0]);
}

protected void onPostExecute(Long result) {
showDialog("Downloaded " + result + " bytes");
// here you call the function, the task is ended.

}}

关于java - 在异步任务之后运行代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24109674/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com