- ALL
- java33
- linux32
- 工具17
- 其他15
- 数据库7
- ai5
- git5
- vue5
- nas5
- 前端5
- framework3
- windows3
- 脚本2
- app2
- docker2
- hexo2
- 智能家居2
- maven2
- 小程序2
- spring2
- api1
- 资源1
- mysql1
- markdown1
- 安全1
- question1
- python1
- 数据传输1
- 运维1
- 数据结构1
- nginx1
java8时间工具类
Java处理日期、日历和时间的方式一直为社区所诟病,将 java.util.Date设定为可变类型,以及SimpleDateFormat的非线程安全使其应用非常受限。 新API基于ISO标准日历系统,java.time包下的所有类都是不可变类型而且线程安全。 类名 描述 Instant 时间戳 Duration 持续时间,时间差 LocalDate 只包含日期,如2022-01-01 LocalTime 只包含时间,如12:23:59 LocalDateTime 包含日期和时间,如2022-01-01 12:23:59 Period 时间段 ZoneOffset 时间偏移量,如 +8:00 ZonedDateTime 带时区的时间 Clock 时钟,比如获取目前美国纽约的时间 DateTimeFormatter 时间格式化 示例1:Java 8中获取今天的日期 Java 8 中的 LocalDate...