网络判断

//网络判断需要权限::< uses-permission android:name=”android.permission.ACCESS_NETWORK_STATE”/>
//网络判断的类,,,NetWorkUtil类

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();
}

}
//JsonStringCallaBack类,,,回调的类

public interface JsonStringCallaBack {
public void getJsonString(String json);

}
//NetDataUtil类 ,,获取网络数据的方法

 public static void getData(final String path, Context context, final JsonStringCallaBack callBack){
    if (NetWorkUtil.isConn(context)){
        AsyncTask< Void, Void, String > asyncTask = new AsyncTask< Void, Void, String >() {
            @Override
            protected String doInBackground(Void... voids) {
                try {
                    URL url = new URL(path);
                    HttpURLConnection connection = (HttpURLConnection) url.openConnection();
                    connection.setRequestMethod("GET");
                    connection.setReadTimeout(5000);
                    connection.setConnectTimeout(5000);
                    int responseCode = connection.getResponseCode();
                    if (responseCode == 200){
                        InputStream inputStream = connection.getInputStream();
                        String json = StringUtil.streamToString(inputStream,"utf-8");
                        return json;
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                }
                return null;
            }
            @Override
            protected void onPostExecute(String s) {
                //通过接口把json格式的字符串传递回去....
                callBack.getJsonString(s);
            }
        };
        asyncTask.execute();
    }else {
        NetWorkUtil.showNoNetWorkDlg(context);
    }
}
**//StringUtil类**,,将json数据改为String类数据的方法
        可借鉴http://blog.csdn.net/biggrand/article/details/78242866
        记住,方法是静态的:static String streamToString(InputStream inputStream, String s) ;;
        **//其他类内**

//如果使用网络判断,例如:

NetDataUtil.getData("你自己的一个接口"+page_num(代表的是页数,不用XlistView刻意没有), getActivity(),new JsonStringCallaBack() {
        @Override
        public void getJsonString(String json) {
            //在这里解析
            Gson gson = new Gson();
            DataDataBean dataDataBean = gson.fromJson(json, DataDataBean.class);
            list.addAll(dataDataBean.getResults());
            //下面的是XListView用,
            //设置适配器
           // setAdapter();
            //停止加载
            //xlv.stopLoadMore();
        }

});

如果有XListView的设置,可借鉴http://blog.csdn.net/biggrand/article/details/78206922

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值