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 に答える