网络判断

来源:互联网 发布:淘宝客服上哪儿应聘 编辑:程序博客网 时间:2024/06/17 22:09
  • 如果要使用网络状态的判断,需要权限….
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

public class NetWorkUtil {

/** * 这个方法是判断网络状态是否可用的 * @param context * @return */public static boolean isConn(Context context){    boolean bisConnFlag=false;    //1.获取网络连接的管理对象    ConnectivityManager conManager = (ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE);    //2.通过管理者对象拿到网络的信息    NetworkInfo network = conManager.getActiveNetworkInfo();    if(network!=null){        //3.网络状态是否可用的返回值        bisConnFlag=network.isAvailable();    }    return bisConnFlag;}/** * 如果没有网络 弹出dialog对话框,,,是否进入设置网络的页面 * @param context */public static void showNoNetWorkDlg(final Context context) {    AlertDialog.Builder builder = new AlertDialog.Builder(context);    builder.setIcon(R.mipmap.ic_launcher)         //            .setTitle("警告")            //            .setMessage("当前无网络,是否去设置?").setPositiveButton("设置", new DialogInterface.OnClickListener() {        @Override        public void onClick(DialogInterface dialog, int which) {            // 跳转到系统的网络设置界面            Intent intent = null;            // 先判断当前系统版本            if(android.os.Build.VERSION.SDK_INT > 10){  // 3.0以上                intent = new Intent(android.provider.Settings.ACTION_WIRELESS_SETTINGS);            }else{                intent = new Intent();                intent.setClassName("com.android.settings", "com.android.settings.WirelessSettings");            }            context.startActivity(intent);        }    }).setNegativeButton("取消", null).show();}

}

进行判断
public void getDataFromNet(View view){
//访问之前先判断一下网络状态
if (NetWorkUtil.isConn(MainActivity.this)){
new Thread(){
@Override
public void run() {
//获取数据的地址
String path = “http://v.juhe.cn/toutiao/index“;

                try {                    URL url = new URL(path);                    //打开连接                    HttpURLConnection connection = (HttpURLConnection) url.openConnection();                    //设置                    connection.setRequestMethod("POST");                    connection.setReadTimeout(5000);                    connection.setConnectTimeout(5000);                    //设置请求内容的类型                    connection.setRequestProperty("Content-Type","application/x-www-form-urlencoded");                    //设置可以向外输出...因为post方式的时候参数是以流的形式写给服务器,所以设置向外输出                    connection.setDoOutput(true);                    //参数                    String params = "type=top&key=597b4f9dcb50e051fd725a9ec54d6653";                    //把参数以流的形式写给服务器                    connection.getOutputStream().write(params.getBytes());//代码到这个位置,,,参数写给服务器                    //获取                    int responseCode = connection.getResponseCode();                    if (responseCode == 200){                        //获取到服务器返回的输入字节流....装的是json格式的数据                        InputStream inputStream = connection.getInputStream();                        //把字节流转成字符串                        String json = streamToString(inputStream,"utf-8");                        //解析获取到的json格式的字符串                        Gson gson = new Gson();                        //生成变量...alt+enter.....此时所有的数据都装到bean里面了                        DataDataBean dataDataBean = gson.fromJson(json, DataDataBean.class);                        //由于处在子线程,不能设置适配器,,,所以把bean发送到主线程                        Message message = Message.obtain();                        message.what = 0;                        message.obj = dataDataBean;                        handler.sendMessage(message);                    }                } catch (Exception e) {                    e.printStackTrace();                }            }        }.start();    }else {        //没有网络的时候弹窗提示        NetWorkUtil.showNoNetWorkDlg(MainActivity.this);    }}
原创粉丝点击