import com.google.common.collect.Maps;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
/**
* Json 转换工具类
*/
public class GsonUtils
{
/**
* to json string.
*
* @param src
* @return
*/
public static <T> String toJson(T src)
{
Gson gson = new Gson();
return gson.toJson(src);
}
/**
* to json string.
*
* @param type
* @return
*/
public static <T> T fromJson(String json, Type type)
{
Gson gson = new Gson();
T rs= null;
try {
rs = gson.fromJson(json, type);
}catch (Exception e){
rs = null;
}
return rs;
}
}
Gson转换工具
最新推荐文章于 2024-04-03 19:06:02 发布