欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android Gson json使用详情

程序员文章站 2022-09-30 09:31:20
build.gradle中增加 compile 'com.google.code.gson:gson:2.7'} /** * 将jsonString...

build.gradle中增加

compile 'com.google.code.gson:gson:2.7'}
/**
 * 将jsonString转成泛型bean
 * Created by gaobo on 2018/1/22.
 */
public class GsonUtils {
    /**
     * 将jsonString转成泛型bean
     *
     * @param gsonString
     * @param cls
     * @return
     */
    public static  T jsonToBean(String gsonString, Class cls) {
        LogUtils.d(gsonString);
        T t = null;
        try {
            t = new Gson().fromJson(gsonString, cls);
        } catch (Exception e) {
            LogUtils.d(e.toString());
        }
        return t;
    }
}