解决 fastjson toJSON方法日期类型字段 由时间戳转换成自定义类型格式的问题 JSON.toJSONStringWithDateFormat
将map集合转为json对象时遇到一个问题。map中 updateTime的value为日期格式如"2001-01-01",在使用
JSONObject.toJSON(map).toString()
的时候, 得到的结果 updateTime 的值为 时间戳
解决方法:
使用fastjson 的
JSON.toJSONStringWithDateFormat(Object,dateformat,SerializerFeature.WriteDateUseDateFormat)
方法即可将时间戳转换为自定义格式类型的值
from:https://blog.csdn.net/qq_39564789/article/details/105176845