该文不是介绍使用的,而是使用过程中遇到的一个坑(准确来说是自己的失误)!
网络请求框架是一个指示代词,其可以代表Volley、OkHttp3、Retrofit等。当拿到返回值后(通常是Json串)转换成实体类对象。
网络请求代码:
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("http://...data/groups/d3f6e5e52ce5469fa01f7c976ae1777f")
.build();
client.newCall(request).enqueue(new Callback() {
@Override
public void onFailure(Call call, IOException e) {
Log.e("crsh","onFailure");
}
@Override
public void onResponse(Call call, Response response) throws IOException {
Log.e("crsh","onResponse");
//Log.e("crsh",response.body().string()); // ---重点的一行代码!!!
XianMian xianMian = null;
ResponsBean responsBean = new Gson().fromJson(response.body().string(),ResponsBean.class);
if (responsBean != null ) {
Log.e("crsh","responsBean != null");
xianMian = responsBean.body;
}
if (xianMian == null) {
Log.e("crsh","xianMian == null");
}else if (xianMian.components != null && xianMian.components.size() > 0) {
for (int i = 0; i < xianMian.components.size(); i++) {
VedioBean vedioBean = xianMian.components.get(i);
if (vedioBean != null && vedioBean.data != null && vedioBean.data.size() > 0) {
for (int j = 0; j < vedioBean.data.size(); j++) {
VedioBean.DataBean dataBean = vedioBean.data.get(j);
Log.e("crsh","pId = " + dataBean.pID);
}
}
}
}
}
});
创建OkHttpClient对象用来执行请求操作,所以还需要一个请求对象(Request),接着就是调用(代码使用了异步,设置回调)。回调有成功和失败两个函数,成功函数中有一个参数就是返回值(Response)。
问题来了!!!当请求成功后,却拿不到Gson解析的实体对象。
上面代码有一行注释掉的
//Log.e("crsh",response.body().string()); // ---重点的一行代码!!!
最开始的时候,这句Log打印是放开的,并没有注释掉,正常打印出请求返回的Json串。然后程序继续执行:
ResponsBean responsBean = new Gson().fromJson(response.body().string(),ResponsBean.class);
当执行该语句时,会抛出异常,打印e.getMessage()得到信息如下:“End of input at character 0 of” 百度的原因是new Gson().fromJson(null,ResponsBean.class);中的第一个参数为null。 蒙圈2秒后(我上一句明明打印出body体的内容了,怎么可能为空?),突然想起Response的一个特性: body()体只能拿到一次,因为一次请求对应一次Response,所以第二次执行response.body().string()时返回空。解决方式是把Log打印的那句注释掉,完美解决。
额外记一下转换数组时的写法:
List<Student> studentList = new Gson().fromJson(response.body().string(), new TypeToken<List<Student>>(){}.getType());