网络请求框架+Gson解析数据遇到的坑——Json异常(End of input at character 0 of)

该文不是介绍使用的,而是使用过程中遇到的一个坑(准确来说是自己的失误)!

网络请求框架是一个指示代词,其可以代表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());

 

 

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值