当在同一个类上运行我的代码时,应用程序运行良好。但是当我在两个不同的类上运行此代码时,我的应用程序出现错误 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!");
}