在同一个类上运行我的代码时app运行良好。但是当我在两个不同的类上运行此代码时,我的应用程序是错误android.os.networkonmainthreadexception。 当debug我在 responseHttp = httpConnection.getResponseCode(); 检测到错误时 应用程序运行到 responseHttp = httpConnection.getResponseCode(); 并且它去捕获{},它取消“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;
}
}
Code class main:
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!");
}
答案 0 :(得分: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
答案 1 :(得分:0)
你添加一个代码:
uses-permission android:name="android.permission.INTERNET"
uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"