Date以及LocalDateTime格式化

public static void main(String[] args) {
LocalDateTime local = LocalDateTime.now();
Date date = new Date();
//Date 类型的时间使用SimpleDateFormat
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
System.out.println(sdf.format(date));
//LocalDateTime 类型的使用DateTimeFormatter
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
System.out.println(formatter.format(local));
}

上一篇:使用DateTimeFormatter格式化输入的日期时间


下一篇:微服务架构最佳实践 - 基础设施篇