java– 只在Async任务完成后才需要运行任务

java– 只在Async任务完成后才需要运行任务,第1张

概述在运行某些任务之前,如何确保异步任务完成.我需要使用变量AFTER异步任务更改该变量的值.如果我在异步完成运行之前运行代码然后我搞砸了.任何帮助?我对异步任务显然很新.如果您查看我的代码,我可能没有使用onPostExecute(),因为它的意图是建议会有所帮助.我最初的想法是继续向异步任

在运行某些任务之前,如何确保异步任务完成.我需要使用变量AFTER异步任务更改该变量的值.如果我在异步完成运行之前运行代码然后我搞砸了.任何帮助?我对异步任务显然很新.如果您查看我的代码,我可能没有使用onPostExecute(),因为它的意图是建议会有所帮助.我最初的想法是继续向异步任务添加内容,但我认为这只是不好的做法,因为我有很多必须连续运行的东西.基本上,我认为它归结为:我如何确保在我的异步任务完成之前UI线程中的任务不会开始运行.

public class MainActivity extends MapActivity {myJsONmap;public voID onCreate(Bundle savedInstanceState) {new AsyncStuff().execute();locatePlace(myJsONmap); class AsyncStuff extends AsyncTask<VoID, Integer, JsONObject> {            @OverrIDe            protected JsONObject doInBackground(VoID... params) {                jObject = GooglePlacesstuff.getTheJsON(formatedURL);                return null;            }            @OverrIDe            protected voID onPostExecute(JsONObject result) {                // Todo auto-generated method stub                super.onPostExecute(result);                myJsONmap = JsONextractor.getJsONHMArrayL(jObject);  // getting the parsed data from the JsON object.                //the arrayList contains a hashmap of all the relevant data from the Google website.            }        }

解决方法:

您可能想在AndroID Developer上阅读有关AsyncTask的更多信息

http://developer.android.com/intl/es/reference/android/os/AsyncTask.html

关于提示,我个人的选择是将布尔值传递给onPostExecute.这样你就可以评估doInBackground是否成功,然后找出要做的事情(错误信息或更新布局).

请记住,在onPostExecute方法中,理想情况下应该只更新屏幕,假设您的数据正常.在你的例子中,为什么不包括

myJsONmap = JsONextractor.getJsONHMArrayL(jObject);

在doInBackground?然后打电话

locatePlace(myJsONmap);

像这样:

class MyAsyncTask extends AsyncTask<VoID, VoID, Boolean> {    String errorMsg;    @OverrIDe    protected voID onPreExecute() {        super.onPreExecute();    }    @OverrIDe    protected Integer doInBackground(VoID... v) {        try{            jObject = GooglePlacesstuff.getTheJsON(formatedURL);            myJsONmap = JsONextractor.getJsONHMArrayL(jObject);            //do stuff            return true;        } catch (JsONException e){            errorMsg="Something wrong in the Json";            return false;        }    }    @OverrIDe    protected voID onPostExecute(Boolean success) {        if(success){            locatePlace(myJsONmap);            //update layout        } else {            //show error        }    }}
总结

以上是内存溢出为你收集整理的java – 只在Async任务完成后才需要运行任务全部内容,希望文章能够帮你解决java – 只在Async任务完成后才需要运行任务所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1106204.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存