我的应用程序中有一件事有问题。 当我在调试器中启动应用程序时,它会抛出错误 NetworkOnMainThreadException. 更具体地说,当在线程(非主(中连接到Web服务器时会引发异常 com.android.okhttp.internal.huc.HttpsURLConnectionImpl.getResponseCode (HttpsURLConnectionImpl.java(. 因此,应用尝试在主线程上进行网络调用,但代码被另一个线程包围。
有问题的代码位于从 onResume 调用的空白中。下面我附上我的代码。
我已经尝试在另一个线程中包围整个代码,但仍然 - 网络主线程
final Runnable checker = new Runnable() {
@Override
public void run() {
handler.removeCallbacks(null);
Thread thread = new Thread(new Runnable() {
@Override
public void run() {
try {
URL endpoint = new URL("###");
HttpsURLConnection conn =
(HttpsURLConnection) endpoint.openConnection(); //Here it throws mentioned Exception
if (conn.getResponseCode() == 200) {
InputStream response = conn.getInputStream();
String results = iStreamToString(response);
if(UserIdResults.equals("0")){
handler.postDelayed(this, 5000);
}else {
//Do Something
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
});
thread.start();
}
};
handler.postDelayed(checker, 5000);
此问题很可能是由以下行引起的:
handler.postDelayed(this, 5000);
正如所写,this
指的是内在Runnable
(你表示为闭包的那个(。这会导致您的网络执行Runnable
由Handler
运行,当然,这是在主线程上。
您可能打算运行checker
,在这种情况下,您应该只使用checker
代替this
。