码迷,mamicode.com
首页 > 其他好文 > 详细

时间戳

时间:2020-04-13 00:57:07      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:ESS   sim   ret   form   object   自定义   ring   解析   simple   

 1     @RequestMapping("/j3")
 2     public String JsonDome3() throws JsonProcessingException {
 3         ObjectMapper mapper = new ObjectMapper();
 4         Date date = new Date();
 5         //自定义日期的格式
 6         SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd:HH:mm:ss");
 7         String s = simpleDateFormat.format(date);
 8         //ObjectMapper 时间解析后悔的默认格式为:Timestamp  时间戳
 9         return  mapper.writeValueAsString(s);
10         //"2020-04-12:23:41:12"
11     }

时间戳

1     @RequestMapping("/j3")
2     public String JsonDome3() throws JsonProcessingException {
3         ObjectMapper mapper = new ObjectMapper();
4 
5 
6         Date date = new Date();
7 
8         return  mapper.writeValueAsString(date);
9     }

 

时间戳

标签:ESS   sim   ret   form   object   自定义   ring   解析   simple   

原文地址:https://www.cnblogs.com/rzkwz/p/12688744.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!