zl程序教程

您现在的位置是:首页 >  其它

当前栏目

LocalTime

2023-09-27 14:20:55 时间

LocalTime与LocalDate相反,它只代表一个时间,没有日期。 这意味着我们只能获得当天的当前时间,而不是实际日期:

LocalTime time = LocalTime.now(); // gets the current time
可以按如下方式format

DateTimeFormatter formatter = DateTimeFormatter.ofPattern("HH:mm:ss");
System.out.println(time.format(formatter));
得到的结果类似如下:

00:55:58