0

我在 asynctask 之前检查了连接和正确的链接,但有时应用程序会崩溃,因为我认为是在 UI 线程上进行的。如果我将代码放在 AsyncTask 上,应用程序总是崩溃。有什么解决办法吗?

在 onCreate 方法上:

if(connectionOK())
      {
          try {
                url = new URL(bundle.getString("direccion"));
                con = (HttpURLConnection) url.openConnection();
                if(con.getResponseCode() == HttpURLConnection.HTTP_OK)
                {
                    Tarea tarea = new Tarea(this);
                    tarea.execute();
                }
                else
                {
                    con.disconnect();
                   //show alertdialog with the problem
                    direccionInvalida();
                }
        } catch (Exception e){e.printStackTrace();}

      }
      else
      { 
             //show alertdialog with the problem
             notConnection() 
      }
4

2 回答 2

1

试试这个,检查里面的网络连接doInBackground

public class GetTask extends AsyncTask<Void, Void, Integer> {

    protected void onPreExecute() {
        mProgressDialog = ProgressDialog.show(MainActivity.this,
                "Loading", "Please wait");
    }

    @Override
    protected Integer doInBackground(Void... params) {
        // TODO Auto-generated method stub
                   if(connectionOK()){
        //ADD YOUR API CALL
              return 0;
                  }esle{
                     return 1;
                   }

    }

    protected void onPostExecute(Integer result) {
        super.onPostExecute(result);
        if (mProgressDialog.isShowing()) {
            mProgressDialog.dismiss();
        } 
                    if(result == 0){
                       //do your stuff
                     }else{
                      //show alertdialog with the problem
                     }

    }
}
于 2013-02-04T13:28:41.963 回答
0

你的问题很模糊!

然而:在较新的机器人中,您不能在 UI 线程上执行此行:

con = (HttpURLConnection) url.openConnection();

所以一个简单的解决方案是将所有内容添加到一个新线程中:

new Thread() {
    public void run() {
        //add all your code
    }
}.start();

但是,您的代码有一些块可以显示这样的对话框(猜测):

//show alertdialog with the problem
notConnection();

这些功能应该在 UI 线程上完成。所以使用处理程序:

//add this outsire the thread
Handler mHandler = new Handler();

然后在您的代码中使用:

mHandler.post(new Runnable() {
    public void run() {
        notConnection();
    }
});

最后,这是一个修复。真正的解决方案是让您无论如何发布 AsyncTask 并处理错误或成功onPostExecute()

于 2013-02-04T13:28:04.097 回答