gpt4 book ai didi

android - 在 Android 中验证网络连接

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:15:30 25 4
gpt4 key购买 nike

<分区>

我想知道如何在发送数据之前在 Android 中验证网络连接?谁能帮我 ?我尝试了这段代码但没有结果

public boolean isConnectingToInternet() {
ConnectivityManager connectivity = (ConnectivityManager) ctx.getSystemService(Context.CONNECTIVITY_SERVICE);
if (connectivity != null)
{
NetworkInfo[] info = connectivity.getAllNetworkInfo();
if (info != null)
{
for (int i = 0; i < info.length; i++)
{
if (info[i].getState() == NetworkInfo.State.CONNECTED)
{
return true;
}
}
}
}
return false;
}

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