2

我正在使用此代码检查网络连接:

public boolean isOnline() {
    ConnectivityManager cm =
        (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
    NetworkInfo netInfo = cm.getActiveNetworkInfo();
    if (netInfo != null && netInfo.isConnectedOrConnecting()) {
        return true;
    }
    return false;
}

它工作正常。但我想要的是互联网是否也可用,因为有时网络可用但没有互联网。

4

0 回答 0