码迷,mamicode.com
首页 > 编程语言 > 详细

Json字符串转Java对象和List集合

时间:2019-05-26 00:30:34      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:public   转java   ring   exception   对象   code   ESS   turn   span   

对象POJO和JSON互转

public class JsonUtil {
    /**
     * JSON 转 POJO
     */
     public static <T> T getObject(String pojo, Class<T> tclass) {
            try {
                return JSONObject.parseObject(pojo, tclass);
            } catch (Exception e) {
                log.error(tclass + "转 JSON 失败");
            }
            return null;
     }
     
     /**
      * POJO 转 JSON    
      */
     public static <T> String getJson(T tResponse){
         String pojo = JSONObject.toJSONString(tResponse);
         return pojo;
     }
     
}

List集合和JSON互转工具类

public class JsonListUtil {
    /**
     * List<T> 转 json 保存到数据库
     */
    public static <T> String listToJson(List<T> ts) {
        String jsons = JSON.toJSONString(ts);
        return jsons;
    }

    /**
     * json 转 List<T>
     */
    public static <T> List<T> jsonToList(String jsonString, Class<T> clazz) {
        @SuppressWarnings("unchecked")
        List<T> ts = (List<T>) JSONArray.parseArray(jsonString, clazz);
        return ts;
    }

}

 

Json字符串转Java对象和List集合

标签:public   转java   ring   exception   对象   code   ESS   turn   span   

原文地址:https://www.cnblogs.com/winddogg/p/10924487.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!