检查设备是否有互联网连接

时间:2013-07-17 22:04:24

标签: java android xml connection

我想检查设备是否有互联网连接。我找到了很多解决方案,但在示例中我不能做这样的事情:

if(device has Internet connection){
    webview.loadUrl("http://the.url.com")
}
else{
    Toast.makeText(context, text, duration).show()
}

2 个答案:

答案 0 :(得分:7)

将此方法放在要检查连接的类中:

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

然后,当您需要检查连接时,请执行此操作(使用您的示例):

if(isOnline(getApplicationContext()){
    webview.loadUrl("http://the.url.com")
}
else{
    Toast.makeText(context, text, duration).show()
}

您也可以在类中创建该方法,并始终从那里使用它,例如ExampleClass.isOnline()。

不要忘记将其添加到AndroidManifest:

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

答案 1 :(得分:2)

这是一个小例子:

try {
    URL url = new URL("http://the.url.com");
    URLConnection conn = url.openConnection();
    conn.connect();
    webview.loadUrl("http://the.url.com");
} catch (MalformedURLException e) {
    // the URL is not in a valid form
    Toast.makeText(context, text, duration).show();
} catch (IOException e) {
    // the connection couldn't be established
    Toast.makeText(context, text, duration).show()
}