java将JSON字符串转换为实体类对象
@SuppressWarnings("unchecked")
public static <T> T jsonToObject(String jsonString, Class<T> pojoCalss) {
try{
Object pojo;
net.sf.json.JSONObject jsonObject = net.sf.json.JSONObject.fromObject(jsonString);
pojo = net.sf.json.JSONObject.toBean(jsonObject, pojoCalss);
return (T)pojo;
}catch(Exception ex){
ex.printStackTrace();
return null;
}
}
再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!http://www.captainbed.net