LocalDateTime和时间戳互转

Unix时间戳(Unix timestamp),或称Unix时间(Unix time)、POSIX时间(POSIX time),是一种时间表示方式,定义为从格林威治时间1970年01月01日00时00分00秒起至现在的总秒数。

java实现获得时间戳:

LocalDateTime.now().toInstant(ZoneOffset.of("+8")).toEpochMilli();

时间戳转换成LocalDateTime

Long timestamp = LocalDateTime.now().toInstant(ZoneOffset.of("+8")).toEpochMilli();
LocalDateTime time2 =LocalDateTime.ofEpochSecond(timestamp/1000,0,ZoneOffset.ofHours(8));
 

你可能感兴趣的:(java)