我想检查设备是否有互联网连接。我找到了很多解决方案,但在示例中我不能这样做:
if(device has Internet connection){
webview.loadUrl("http://the.url.com")
}
else{
Toast.makeText(context, text, duration).show()
}
我想检查设备是否有互联网连接。我找到了很多解决方案,但在示例中我不能这样做:
if(device has Internet connection){
webview.loadUrl("http://the.url.com")
}
else{
Toast.makeText(context, text, duration).show()
}
将此方法放在要检查连接性的类中:
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" />
这是一个小例子:
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()
}