天天看点

LocalDate和LocalDateTime日期格式化废话少说,直接上代码

LocalDate和LocalDateTime日期格式化

  • 废话少说,直接上代码

废话少说,直接上代码

public static void main(String[] args) throws Exception {
        LocalDate curDay = LocalDate.now();
        DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
        System.out.println(curDay.format(formatter));
        formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
        System.out.println(LocalDateTime.now().format(formatter));
    }
           

运行结果:

LocalDate和LocalDateTime日期格式化废话少说,直接上代码