java将JSON字符串转换为实体类对象,基于net sf json实现

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

上一篇:记一次更改为了适配盒子,修改了盒子系统density值的过程


下一篇:VUE 组件通信问题