String字符串如何变成java对象
3 回答
人到中年有点甜
TA贡献1895条经验 获得超7个赞
/**
* 从一个JSON 对象字符格式中得到一个java对象
* @param jsonString json字符串
* @param pojoCalss 对象class
* @return
*/
public static Object getObject4JsonString(String jsonString, Class pojoCalss) {
Object pojo;
JSONObject jsonObject = JSONObject.fromObject(jsonString);
pojo = JSONObject.toBean(jsonObject, pojoCalss);
return pojo;
}
添加回答
举报
0/150
提交
取消