gpt4 book ai didi

Android 互联网连接检查

转载 作者:行者123 更新时间:2023-11-29 00:36:59 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Android - detect whether there is an Internet connection available

这是检查 android 设备上互联网可用性的代码:

public boolean isInternetAvailable() {
ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
if (cm.getActiveNetworkInfo() != null)
return cm.getActiveNetworkInfo().isConnected();
else
return false;
}

因此,如果没有可用的 wifi 或网络,此代码可以正常工作。

但是如果设备连接到 wifi 网络但互联网不可用,那么我应该怎么做才能检查互联网是否存在?

任何建议将不胜感激。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com