3、其他类API-----练习1:将毫秒值转成 指定的日期的格式
2021-02-17 14:18
标签:span orm 通过 log new ring post api xxxx 3、其他类API-----练习1:将毫秒值转成 指定的日期的格式 标签:span orm 通过 log new ring post api xxxx 原文地址:https://www.cnblogs.com/a888/p/8378169.html将毫秒值转成 指定的日期的格式 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:将毫秒值转成 指定的日期的格式
文章链接:http://soscw.com/index.php/essay/56607.html