首页 > 文章列表 > java LocalDate有什么作用

java LocalDate有什么作用

java LocalDate
360 2022-08-06

说明

1、LocalDate是日期对象,每次操作都会回到新的时间对象。

2、可以直接分析日期字符串,生成LocalDate实例,和LocalTime操作一样简单。

实例

DateTimeFormatter germanFormatter =
    DateTimeFormatter
        .ofLocalizedDate(FormatStyle.MEDIUM)
        .withLocale(Locale.GERMAN);
 
LocalDate xmas = LocalDate.parse("24.12.2014", germanFormatter);
System.out.println(xmas);   // 2014-12-24

推荐操作环境:windows7系统、java10版,DELL G3电脑。