首先我使用的是net.sf.json来转换如下:
JSONObject object = JSONObject.fromObject(jsonStr);
BaseInfo baseInfo = (BaseInfo) JSONObject.toBean(object, BaseInfo.class);
效果是达到了。但是转换的过程中发现时间类型被默认转换成了系统当前时间!!!!
然后去度娘了一下:
JSONObject object = JSONObject.fromObject(jsonStr);
JSONUtils.getMorpherRegistry().registerMorpher(new DateMorpher(new String[] {"yyyy-MM-dd"}));
BaseInfo baseInfo = (BaseInfo) JSONObject.toBean(object, BaseInfo.class);
要先格式化时间。
本以为到此就结束了,谁曾想运行报错,如果json字符串传入的时间类型{"createDate":""}时会报
net.sf.json.JSONException: Error while setting property=createDate type class java.lang.String
这个错误怎么解决参考https://blog.csdn.net/papima/article/details/78670155这篇文章。
我感觉上述太麻烦就用了 com.alibaba.fastjson.JSON如下:
// jsonStr是json字符串,BaseInfo是java对象
BaseInfo baseInfo = JSON.parseObject(jsonStr, BaseInfo.class);
就得到了自己想要的Java对象