1

当我尝试连接到互联网时,我收到了 android.os.NetworkOnMainThreadException 错误。我知道更高版本的 android(HoneyComb 以后)不允许您在 UI 线程上执行网络 IO,这就是我使用 AsyncTask 的原因. 代码没有错误,但是当它运行时,我得到 android.os.NetworkOnMainThreadException 错误代码:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.mainactivity);
    new GetProductDetails().execute();
}

class GetProductDetails extends AsyncTask<String, String, String> {

    /**
     * Before starting background thread Show Progress Dialog
     * */
    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        pDialog = new ProgressDialog(MainActivity.this);
        pDialog.setMessage("Loading product details. Please wait...");
        pDialog.setIndeterminate(false);
        pDialog.setCancelable(true);
        pDialog.show();
    }

    /**
     * Getting product details in background thread
     * */
    protected String doInBackground(String... params) {

        // updating UI from Background Thread
        runOnUiThread(new Runnable() {
            public void run() {
                // Check for success tag
                int success;
                try {
                    // Building Parameters
                    List<NameValuePair> params = new ArrayList<NameValuePair>();
                    params.add(new BasicNameValuePair("pid", pid));

                    // getting product details by making HTTP request
                    // Note that product details url will use GET request
                    JSONObject json = jsonParser.makeHttpRequest(
                            url_product_details, "GET", params);

                    // check your log for json response
                    Log.d("Single Product Details", json.toString());

                    // json success tag
                    success = json.getInt(TAG_SUCCESS);
                    if (success == 1) {
                        // successfully received product details
                        JSONArray productObj = json
                                .getJSONArray(TAG_PRODUCT); // JSON Array

                        // get first product object from JSON Array
                        JSONObject product = productObj.getJSONObject(0);


                        txtName = (EditText) findViewById(R.id.inputName);
                        txtPrice = (EditText) findViewById(R.id.inputPrice);
                        txtDesc = (EditText) findViewById(R.id.inputDesc);

                        // display product data in EditText
                        txtName.setText(product.getString(TAG_NAME));
                        txtPrice.setText(product.getString(TAG_PRICE));
                        txtDesc.setText(product.getString(TAG_DESCRIPTION));


                    }else{
                        // product with pid not found
                    }
                } catch (JSONException e) {
                    e.printStackTrace();
                }
            }
        });

        return null;
    }


    /**
     * After completing background task Dismiss the progress dialog
     * **/
    protected void onPostExecute(String file_url) {
        // dismiss the dialog once got all details
        pDialog.dismiss();
    }
}

我已经读到一个可能的解决方案是使用 StrictMode 策略,但我有点不愿意使用它,因为它仅在开发环境中被推荐。这里有什么问题?

4

3 回答 3

6

这里有什么问题?

您正在主应用程序线程上执行网络 I/O,从Runnable您使用 with的内部开始runOnUiThread()

摆脱runOnUiThread()and Runnable。将网络代码放入doInBackground(). 更新您的小部件onPostExecute()。您可以通过 from的返回值(它成为传递给的参数)或自身内部的数据成员将数据从doInBackground()to传递。onPostExecute()doInBackground()onPostExecute()AsyncTask

于 2013-06-20T18:36:27.073 回答
1

您正在使用 AsyncTask 但在 doInBackground 您正在调用

// updating UI from Background Thread
        runOnUiThread(new Runnable() {
            public void run() {

在这些字符串中,您从主 UI 线程中的 doInBackground 运行所有下一个代码,它会删除所有 AsyncTask 效果。

比你跑

JSONObject json = jsonParser.makeHttpRequest(
                            url_product_details, "GET", params);

它在主线程中运行,如下所述。所以,它抛出异常。

将您的所有网络代码移出 Runnable 并将您的 Runnable 放在 doInBackground 的末尾,仅更新小部件 - 它应该可以工作。

于 2013-06-20T18:37:41.087 回答
0

您正在 ui 线程上运行与网络相关的操作。

你正在使用runOnUiThread里面doInbackground()。在里面runOnUiThread你有以下

JSONObject json = jsonParser.makeHttpRequest(
                        url_product_details, "GET", params);

这导致NetworkOnMainThreadException.

您还缺少和的@Override注释。doInBackground()onPostExecute()

A 可以在中发出 json 请求并在中doInbackground()更新 ui onPostExecute()

如果您使用runOnUiThread它来更新 ui 并将所有与网络相关的操作移动到doInbackground.

您也可以将以下内容移至onCreate.

  txtName = (EditText) findViewById(R.id.inputName);
  txtPrice = (EditText) findViewById(R.id.inputPrice);
  txtDesc = (EditText) findViewById(R.id.inputDesc);

返回后台计算的结果doInbackground。doInbackground 的结果是 onPostExecute 的一个参数。您可以使用它来更新 ui 中的onPostExecute.

有关更多信息,请查看文档

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

于 2013-06-20T18:37:25.963 回答