FrankYou 通过本文主要向大家介绍了java秒转日期,java暂停几秒,java等待10秒,java 毫秒转秒,java获取当前秒数等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
本文实例讲述了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] */ } }</div>
eclipse运行结果如下:
PS:这里再为大家推荐几款时间及日期相关工具供大家参考使用:
在线日期/天数计算器:
http://tools.weikejianghu.com/jisuanqi/date_jisuanqi
在线日期计算器/相差天数计算器:
http://tools.weikejianghu.com/jisuanqi/datecalc
在线日期天数差计算器:
http://tools.weikejianghu.com/jisuanqi/onlinedatejsq
Unix时间戳(timestamp)转换工具:
http://tools.weikejianghu.com/code/unixtime
希望本文所述对大家java程序设计有所帮助。
</div>