如何检查Wifi是否已连接,但Android中无法访问Internet

问题描述 投票:14回答:4

我想知道为什么wifi连接但Android没有互联网接入。我怎么检查它?我的代码是:

ConnectivityManager cn=(ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE);
 NetworkInfo nf=cn.getActiveNetworkInfo();

 if(nf != null && nf.isConnected() )
         {
            Flag2=false;
            Log.e("network--------", "1--------------");

            if (cn.getActiveNetworkInfo().isConnectedOrConnecting())
            {Log.e("network--------", "11111111111111--------------");
             }
            else
            {Log.e("network--------", "2222222222222--------------");
            }
        }

 else 
         {
            Log.e("network--------", "2--------------");
 }
android android-networking
4个回答
22
投票

你可以尝试这样的事情:

public void checkOnlineState() {
    ConnectivityManager CManager =
        (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
    NetworkInfo NInfo = CManager.getActiveNetworkInfo();
    if (NInfo != null && NInfo.isConnectedOrConnecting()) {
        if (InetAddress.getByName("www.xy.com").isReachable(timeout))
        {  
         // host reachable  
        }
         else
         {    
         // host not reachable  
         }  
    }
    return;
}

不要忘记访问权限

 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

希望它会工作:)


2
投票

除了您现在正在做的事情,您还可以使用BroadcastReceiver为您的应用程序通过注册<action android:name="android.net.conn.CONNECTIVITY_CHANGE"/>意图在连接发生变化时收到通知。

请查看文档:BroadcastReceiverConnectivity Monitoring以获取详细说明。

我希望它会有所帮助!


2
投票

用这个 :

public static boolean isInternetOn(Context context) {
        ConnectivityManager cm = (ConnectivityManager) context
                .getSystemService(Context.CONNECTIVITY_SERVICE);
        // test for connection
        if (cm.getActiveNetworkInfo() != null
                && cm.getActiveNetworkInfo().isAvailable()
                && cm.getActiveNetworkInfo().isConnected()) {
            Log.v(TAG, "Internet is working");
            // txt_status.setText("Internet is working");
            return true;
        } else {
            // txt_status.setText("Internet Connection Not Present");
            Log.v(TAG, "Internet Connection Not Present");
            return false;
        }
    }

希望这可以帮助。


0
投票
ConnectivityManager manager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
        NetworkInfo info = manager.getActiveNetworkInfo();
        if (info != null && info.isAvailable()) {
            return true;
        }
        return false;
© www.soinside.com 2019 - 2024. All rights reserved.