3

当在同一个类上运行我的代码时,应用程序运行良好。但是当我在两个不同的类上运行此代码时,我的应用程序出现错误 android.os.networkonmainthreadexception。调试时我在responseHttp = httpConnection.getResponseCode();处检测到错误 应用程序运行到行responseHttp = httpConnection.getResponseCode(); 它去catch {},它取消“If..else”。并记录错误android.os.networkonmainthreadexception。你能帮助我吗!!

我的代码类 Asynctask

package com.example.finishdemo;

import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLConnection;
import android.os.AsyncTask;

public class TestConnectionNew extends AsyncTask<String, Void, String> {
private int responseHttp = 0;
private String flag="false";

@Override
protected String doInBackground(String... urltest) {
    // TODO Auto-generated method stub
    try {
        URL url = new URL(urltest[0]);
        URLConnection connection = url.openConnection();
        connection.setConnectTimeout(2000);
        HttpURLConnection httpConnection = (HttpURLConnection) connection;
        **responseHttp = httpConnection.getResponseCode();**
        if (responseHttp == HttpURLConnection.HTTP_OK) {
            flag = "true";
        } else {
            flag = "false";
        }
    } catch (Exception e) {
        e.printStackTrace();
        System.out.println("Thong bao loi: "+e.toString());
    }
    return flag;
}
}

代码类主要:

package com.example.finishdemo;
public class Hoadon extends Activity {
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.hoadon);
    TestConnectionNew t=new TestConnectionNew();
    String recieve=t.doInBackground("http://longvansolution.tk/monthlytarget.php");
    if(recieve.equalsIgnoreCase("true"))
    {
        doTimerTask();
    }else
        if(recieve.equalsIgnoreCase("false"))
    {
        showAlert("Không kết nối được đến server hoặc thiết bị chưa có kết nối internet!");
    }
4

2 回答 2

7

使用asynctask.execute执行 AsyncTask 而不是手动调用 doInBackground :

 TestConnectionNew t = new TestConnectionNew();
 t.execute("http://longvansolution.tk/monthlytarget.php");

将您的 TestConnectionNew 更改为

public class TestConnectionNew extends AsyncTask<String, Void, String> {
private int responseHttp = 0;
private String flag="false";

@Override
protected String doInBackground(String... urltest) {
    // TODO Auto-generated method stub
    try {
        URL url = new URL(urltest[0]);
        URLConnection connection = url.openConnection();
        connection.setConnectTimeout(2000);
        HttpURLConnection httpConnection = (HttpURLConnection) connection;
        **responseHttp = httpConnection.getResponseCode();**
        if (responseHttp == HttpURLConnection.HTTP_OK) {
            flag = "true";
        } else {
            flag = "false";
        }
    } catch (Exception e) {
        e.printStackTrace();
        System.out.println("Thong bao loi: "+e.toString());
    }
    return flag;
}

@Override
     protected void onPostExecute(String recieve) {
           if(recieve.equalsIgnoreCase("true"))
            {
               doTimerTask();
           }else
           if(recieve.equalsIgnoreCase("false"))
             {
              showAlert("Không kết nối được đến server hoặc thiết bị chưa có kết nối internet!");
             }
      }
}

有关我们如何使用 AsyncTask 的更多帮助,请参阅:

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

于 2012-12-06T08:42:04.267 回答
0

在 AndroidManifest.xml 中添加代码:

uses-permission android:name="android.permission.INTERNET" 
uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" 
于 2013-10-17T08:41:13.493 回答