jsonobject将json格式字符串转化为对象时,日期格式错误解析

前端之家收集整理的这篇文章主要介绍了jsonobject将json格式字符串转化为对象时,日期格式错误解析前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

json格式字符串中的日期是按照‘yyyy-MM-dd HH:mm:ss’格式,如果按照常规的转换为对象,该日期则解析成当前系统时间

JSONObject json = JSONObject.fromObject(data);
Dispatchplan dp = (Dispatchplan)JSONObject.toBean(json,Dispatchplan.class);

导致原因JSONObject可能无法识别日期格式,做了以下修改解决\

Dispatchplan dp = new Dispatchplan();
JSONObject json = JSONObject.fromObject(data);
String[] dateFormats = new String[] {"yyyy-MM-dd HH:mm:ss"};  
JSONUtils.getMorpherRegistry().registerMorpher(new DateMorpher(dateFormats)); 		
dp = (Dispatchplan)JSONObject.toBean(json,Dispatchplan.class);
原文链接:https://www.f2er.com/json/290602.html

猜你在找的Json相关文章