FastJson转为jsonString时日期格式转换

在打印日志或其他操作的时候,需要将某个对象转为jsonString,其中日期格式我们希望使用自定义的格式化后的格式,方便查看及后续处理

        Test test = new Test();
        test.setDate(new Date());
        JSON.toJSONStringWithDateFormat(test, "yyyy-MM-dd", SerializerFeature.WriteDateUseDateFormat);

 

posted @ 2020-08-06 20:37  天邪小鬼  阅读(3466)  评论(0编辑  收藏  举报