xUtils网络请求小Demo

时间:2021-03-27 22:16:12

xUtils网络请求:

这里要注意的是,用的是第三方Jar包,是要导入的。
进行网络请求的时候要声明“联网”权限。
这里用到的Jar有:xUtils和Gson。

 private void initData2() {
HttpUtils httpUtils = new HttpUtils();
String url = "http://i。。。。。。";
httpUtils.send(HttpRequest.HttpMethod.GET, url, new RequestCallBack<String>() {

@Override
public void onSuccess(ResponseInfo<String> responseInfo) {
String result = responseInfo.result;
Gson gson = new Gson();
listBean = gson.fromJson(result, ListBean.class);
items2 = listBean.getItems();

myAdapter = new MyAdapter(getActivity(),items2);
lv.setAdapter(myAdapter);
}

@Override
public void onFailure(HttpException e, String s) {

}
});
}