当前位置:   article > 正文

Json与 String 转换_json转string在线

json转string在线
	/**
     * 将 json对象转化为 String
     *
     * @param t
     * @param <T>
     * @return
     */
    public static <T> String jsonToString(T t) {
        Gson gson = new Gson();
        return gson.toJson(t);
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
	/**
     * 将字符串 转换为 json对象
     *
     * @param jsonStr
     * @param t
     * @param <T>
     * @return
     */
    public static <T> T stringToJson(String jsonStr, T t) {
        try {
            Gson gson = new Gson();
            return (T) gson.fromJson(jsonStr, t.getClass());
        } catch (Exception e) {
            if (BuildConfig.isLogDebug) {
                e.printStackTrace();
                LogUtils.e(TAG, e.getMessage());
            }
        }
        return null;
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/512634
推荐阅读
相关标签
  

闽ICP备14008679号