-
时间格式化处理
LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
时间戳获取
long endCommodtiy = LocalDateTime.now().toInstant(ZoneOffset.of("+8")).toEpochMilli();
时间格式化处理
LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
时间戳获取
long endCommodtiy = LocalDateTime.now().toInstant(ZoneOffset.of("+8")).toEpochMilli();