3、其他类API-----练习1:将毫秒值转成 指定的日期的格式

2021-02-17 14:18

阅读:601

标签:span   orm   通过   log   new   ring   post   api   xxxx   

将毫秒值转成 指定的日期的格式   xxxx年xx月xx日   hh:mm:ss
                    步骤:
                    //1,毫秒值time--->Date
                    Date date = new Date(time);
                    //2,通过日期时间格式器对象DateFormat对日期对象进行格式化(日期--->文本字符串)
                    DateFormat format = DateFormat.getDateTimeInstance(DateFormat.LONG,DateFormat.LONG);
                    String str_time = format.format(date);
                    System.out.println(str_time);

 

3、其他类API-----练习1:将毫秒值转成 指定的日期的格式

标签:span   orm   通过   log   new   ring   post   api   xxxx   

原文地址:https://www.cnblogs.com/a888/p/8378169.html


评论


亲,登录后才可以留言!