首页 > 编程 > Java > 正文

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

2019-11-26 12:40:57
字体:
来源:转载
供稿:网友

本文实例讲述了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:这里再为大家推荐几款时间及日期相关工具供大家参考使用:

在线日期/天数计算器:
http://tools.VeVB.COm/jisuanqi/date_jisuanqi

在线日期计算器/相差天数计算器:
http://tools.VeVB.COm/jisuanqi/datecalc

在线日期天数差计算器:
http://tools.VeVB.COm/jisuanqi/onlinedatejsq

Unix时间戳(timestamp)转换工具:
http://tools.VeVB.COm/code/unixtime

希望本文所述对大家java程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表