您的位置:首页 > 教程文章 > 编程开发

Java实现纪元秒和本地日期时间互换的方法【经典实例】

:0 :2021-05-10 12:38:51

本文实例讲述了Java实现纪元秒和本地日期时间互换的方法。分享给大家供大家参考,具体如下:
Java版本:1.8开始
import java.time.Instant;
import java.time.ZoneId;
import java.time.ZonedDateTime;
/**
* Created by Frank
*/
public class CurrentDatetime {
public static void main(String[] args) {
// 纪元秒和本地日期时间互换
Instant epochSec = Instant.ofEpochSecond(1000000000L);
ZoneId zId = ZoneId.systemDefault();
ZonedDateTime then = ZonedDateTime.ofInstant(epochSec, zId);
System.out.println("The epoch was a billion seconds old on " + then);
/*
运行输出:
The epoch was a billion seconds old on 2001-09-09T09:46:40+08:00[Asia/Shanghai]
*/
}
}

eclipse运行结果如下:
PS:这里再为大家推荐几款时间及日期相关工具供大家参考使用:
在线日期/天数计算器:
在线日期计算器/相差天数计算器:
在线日期天数差计算器:
Unix时间戳(timestamp)转换工具:
希望本文所述对大家java程序设计有所帮助。

Java求字符串中出现次数最多的字符串以及出现次数
java 动态的方法总结

同类资源