使用Gson处理解析泛型类型对象

20 篇文章 0 订阅
1 篇文章 0 订阅

Gson处理解析泛型类型对象,直接在泛型当前类获取泛型的类型

public abstract class CallBack<T> {

//获取解析传递过来的泛型类型(在泛型当前类中获取)

     public Type getType() {
            ParameterizedType genType = (ParameterizedType) getClass().getGenericSuperclass();

            Type[] actualTypeArguments = ((ParameterizedType) genType).getActualTypeArguments();

            return actualTypeArguments[0];
      }

     public abstract void onSuccess(T result);

    @Override
    public void onSuccess(String responseInfo,int stateCode) {
        Gson gson = new Gson();
        try {
            if (stateCode == 200) {

                Type type = getType();

                if (type == String.class) {
                    onSuccess((T) responseInfo);

                } else if (type == List.class) {
                        //list没有指定泛型类型的
                      onSuccess((T) gson.fromJson(responseInfo, type));
                } else if (type == Map.class) {
                         //map没有指定泛型类型的
			onSuccess((T) gson.fromJson(responseInfo, type));
                } else if (type instanceof ParameterizedType && ((ParameterizedType) type).getActualTypeArguments().length == 1) {
                   
                         //List指定泛型类型的
			 onSuccess((T) gson.fromJson(responseInfo, type));
                } else if (type instanceof ParameterizedType && ((ParameterizedType) type).getActualTypeArguments().length == 2) {
                        //map指定泛型类型的
			onSuccess((T) gson.fromJson(result, type));
                } else {
		    //其它单个对象类型
                    onSuccess((T) gson.fromJson(responseInfo, type));
                }


            } else {
                onFailure(new HttpException());
            }
        } catch (JsonSyntaxException e) {
            e.printStackTrace();
            onFailure(new HttpException(e.getMessage()));
        }
    }

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值