本篇博客主要总结 Java 里面关于获取当前时间的一些方法,分享给初学者。
System.currentTimeMillis()
获取标准时间可以通过System.currentTimeMillis()方法获取,此方法不受时区影响,得到的结果是时间戳格式的。例如:
1543105352845
我们可以将时间戳转化成我们易于理解的格式
SimpleDateFormatformatter=newSimpleDateFormat(“yyyy-MM-dd’at’HH:mm:ssz”);Datedate=newDate(System.currentTimeMillis());System.out.println(formatter.format(date));
则该时间戳对应的时间为:
2018-11-25at01:22:12CET
值得注意的是,此方法会根据我们的系统时间返回当前值,因为世界各地的时区是不一样的。
java.util.Date
在 Java 中,获取当前日期最简单的方法之一就是直接实例化位于 Java 包 java.util 的 Date 类。
Datedate=newDate();//thisobjectcontainsthecurrentdatevalue
上面获取到的日期也可以被format成我们需要的格式,例如:
SimpleDateFormatformatter=newSimpleDateFormat(“dd-MM-yyyyHH:mm:ss”);System.out.println(formatter.format(date));Calendar API
Calendar 类,专门用于转换特定时刻和日历字段之间的日期和时间。
使用 Calendar 获取当前日期和时间非常简单:
Calendarcalendar=Calendar.getInstance();//getcurrentinstanceofthecalendar
与 date 一样,我们也可以非常轻松地 format 这个日期成我们需要的格式
SimpleDateFormatformatter=newSimpleDateFormat(“dd-MM-yyyyHH:mm:ss”);System.out.println(formatter.format(calendar.getTime()));
上面代码打印的结果如下:
25-11-201800:43:39Date/Time API
Java 8 提供了一个全新的 API,用以替换 java.util.Date 和 java.util.Calendar。Date / Time API 提供了多个类,帮助我们来完成工作,包括:
LocalDate
LocalTime
LocalDateTime
ZonedDateTime
LocalDate
LocalDate 只是一个日期,没有时间。这意味着我们只能获得当前日期,但没有一天的具体时间。
LocalDatedate=LocalDate.now();//getthecurrentdate
我们可以 format 它。
DateTimeFormatterformatter=DateTimeFormatter.ofPattern(“dd-MM-yyyy”);System.out.println(date.format(formatter));
得到的结果只有年月日,例如:
25-11-2018LocalTime
LocalTime 与 LocalDate 相反,它只代表一个时间,没有日期。这意味着我们只能获得当天的当前时间,而不是实际日期:
LocalTimetime=LocalTime.now();//getthecurrenttime
可以按如下方式 format。
DateTimeFormatterformatter=DateTimeFormatter.ofPattern(“HH:mm:ss”);System.out.println(time.format(formatter));
得到的结果类似如下:
00:55:58LocalDateTime
最后一个是 LocalDateTime,也是 Java 中最常用的 Date / Time 类,代表前两个类的组合 – 即日期和时间的值:
LocalDateTimedateTime=LocalDateTime.now();//getthecurrentdateandtime
format 的方式也一样。
DateTimeFormatterformatter=DateTimeFormatter.ofPattern(“dd-MM-yyyyHH:mm:ss”);System.out.println(dateTime.format(formatter));
得到的日期结果类似于:
25-11-201800:57:20
●人工智能玩《威力在哪里》●未来世界的幸存者●微服务的创始人 MartinFowler●年轻的程序员不讲码德在代码中下了毒~~●Java 并不是构建微服务平台的最佳选择●前后端分离项目session,cookie,token比较
扫描二维码,一起学编程▼▼▼