LocalDateTime 时间戳转换

        long timestamp = Instant.now().toEpochMilli();
        long timestamp = LocalDateTime.now().toInstant(ZoneOffset.ofHours(8)).toEpochMilli();
        System.out.println(timestamp);
        LocalDateTime inputTime= LocalDateTime.ofInstant(Instant.ofEpochMilli(timestamp),  ZoneOffset.ofHours(8));
        System.out.println(inputTime.toInstant(ZoneOffset.ofHours(8)).toEpochMilli());
Author:Pale Life
From: 
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
原文地址:https://www.cnblogs.com/live365wang/p/15572530.html