尝试从我的 android 服务调用 web 服务时出现 android.os.NetworkOnMainThreadException 异常?
Posted
技术标签:
【中文标题】尝试从我的 android 服务调用 web 服务时出现 android.os.NetworkOnMainThreadException 异常?【英文标题】:android.os.NetworkOnMainThreadException exception while trying to call a webservice from my android Services? 【发布时间】:2020-10-27 17:09:56 【问题描述】:我有一个需要从 android 服务调用 Web 服务的场景。 目前我正在通过 Activity 从 Activity 启动服务
Intent mServiceIntent = new Intent(this, AServices.class);
if (!isMyServiceRunning(AServices.class))
startService(mServiceIntent);
但我得到了一个异常,如 android.os.NetworkOnMainThreadException。由于我正在关注 MVVM 架构,所以有什么方法或替代方法可以从 AsyncTask 和任何其他东西中调用它?
【问题讨论】:
您的代码中没有网络服务调用。没有可以导致该异常的代码。 【参考方案1】:服务在 UI 线程上运行。如果您需要服务扩展IntentService
或新的JobIntentService
而不是Service
。 IntentService
(onHandleIntent
) 和 JobIntentService
(onHandleWork
) 都将在线程 != 从 UI/主线程上执行
【讨论】:
以上是关于尝试从我的 android 服务调用 web 服务时出现 android.os.NetworkOnMainThreadException 异常?的主要内容,如果未能解决你的问题,请参考以下文章
无法从我的服务类(Android Lollipop)启动设备管理员活动
如何将崩溃信息从我的 Android 应用程序发送到我的服务器? [复制]
从我的Web API调用第三方Web API时,Web服务器挂起