网络连接判断

来源:互联网 发布:飞飞cms官网 编辑:程序博客网 时间:2024/06/11 04:36
//判断网络连接ConnectivityManager cwjManager=(ConnectivityManager)this.getSystemService(Context.CONNECTIVITY_SERVICE);NetworkInfo info = cwjManager.getActiveNetworkInfo();if (info != null && info.isAvailable()){    Toast.makeText(this,"连接成功",Toast.LENGTH_SHORT).show();}else{    Toast.makeText(this,"无互联网连接",Toast.LENGTH_SHORT).show();}
原创粉丝点击