> 文章列表 > 类型转换工具类

类型转换工具类

类型转换工具类

的是fatsjson2的依赖

public class TransferUtils{public static <T> transfer(Object o,Class<T> clazz){String jsonString = JSONOBject.toJSONString(o);return JSONObject.parseObject(jsonString,clazz);}public static <T> transfer(Object o,TypeReference<T> typeReference) {String jsonString = JSONObject.toString(o);return JSONObject.parseObject(jsonString, typeRefence);}
}