(Android | Java) AndroidAsyncHttp (Loopj) 在继续线程之前完成 Web 请求

(Android | Java) AndroidAsyncHttp (Loopj) to complete web request before proceeding thread

我目前正在通过 AsyncHttpClient (loopj) 网络请求请求 JsonObject,但是请求速度相当慢,我需要对象才能继续。当前程序崩溃,因为正在保存的对象为空,并且在 Web 请求完成之前调用了保存函数。

这是我正在尝试做的代码片段:

   btnCreate.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {


            AsyncHttpClient client = new AsyncHttpClient();
            String apiAddress = MYAPIADDRESS;

            client.get(apiAddress,
                    new JsonHttpResponseHandler() {

                        //@Override
                        public void onSuccess(int statusCode, Header[] headers, JSONObject response) {

                            try {

                                JSONObject tempTransition = response.getJSONArray("items").getJSONObject(0).getJSONObject("snippet");

                                Toast.makeText(getApplicationContext(), tempTransition.get("description").toString(), Toast.LENGTH_SHORT).show();

                                if(!dirDirectoryJson.contains(tempTransition)){
                                    dirDirectoryJson.add(tempTransition);
                                }

                            } catch (JSONException e) {
                                e.printStackTrace();
                            }
                        }

                        @Override
                        public void onSuccess(int statusCode, Header[] headers, JSONArray timeline) {

                        }

                        @Override
                        public void onFinish() {
                            // Completed the request (either success or failure)

                        }

                    });

                //*** Crashes here ****
                //dirDirectoryJson returning null object from above due to call before complete web request and crashes the program
                try {

                    getDescription = dirDirectoryJson.get(0).getString("description").toString().trim();
                    setDescription( getDescription ); 

               } catch (JSONException e) {
                    e.printStackTrace();
            }
     }

我试过 SyncHttpClient、使线程休眠等以及 seen/tried 这些(以及更多其他)链接,

https://forum.qt.io/topic/5389/how-to-ensure-fully-asynchronous-web-requests

How to wait for all requests to finish

How to make the Main thread wait, when i dont know when will Async task finish the job.?

我还尝试在注释掉代码的存储部分时祝酒收到的对象。 (上面评论)代码没有崩溃,但是 toast 只在网络请求完成后出现。

我该如何解决这个问题? (即成功存储对象而不会在 Web 请求完成后 使应用程序崩溃)。我在网上搜索了很长时间,但没有找到可行的方法,而且我在 Android 中还是个新手。

请提供帮助,如果需要更多详细信息,请告诉我。提前致谢!

由于在后台异步调用 运行,您剩余的代码会在实际保存数据之前执行。

getDescription=dirDirectoryJson.get(0).getString("description").toString().trim();
                setDescription( getDescription );

将这些行写入您的 onSuccess 方法以使其工作。

由于您正在执行的请求是异步的,因此您应该在其完成处理程序中执行使用请求响应的逻辑。

将您的代码更改为

public void onSuccess(int statusCode, Header[] headers, JSONObject response) {

 try {

     JSONObject tempTransition = response.getJSONArray("items").getJSONObject(0).getJSONObject("snippet");

     Toast.makeText(getApplicationContext(), tempTransition.get("description").toString(), Toast.LENGTH_SHORT).show();

     if(!dirDirectoryJson.contains(tempTransition)){
           dirDirectoryJson.add(tempTransition);
     }

     getDescription = dirDirectoryJson.get(0).getString("description").toString().trim();
                setDescription( getDescription );
   } catch (JSONException e) {
      e.printStackTrace();
   }
}

Also make your variables as instance var (that is declare them at class scope) if shows cant access non final variables within the handler