public static boolean checkConnected(Context context) {
NetworkInfo info = ((ConnectivityManager) context
.getSystemService(Context.CONNECTIVITY_SERVICE))
.getActiveNetworkInfo();
return (info != null) && (info.isConnected());
}
返回ture,则网络已开、可用!
NetworkInfo info = ((ConnectivityManager) context
.getSystemService(Context.CONNECTIVITY_SERVICE))
.getActiveNetworkInfo();
return (info != null) && (info.isConnected());
}
返回ture,则网络已开、可用!