- java.time 包类
- java.time - 主页
- java.time - 时钟
- java.time - 持续时间
- java.time - 时间戳
- java.time - 本地日期
- java.time - 本地日期时间
- java.time - 本地时间
- java.time - 月份日
- java.time - 偏移日期时间
- java.time - 偏移时间
- java.time - 周期
- java.time - 年份
- java.time - 年份月份
- java.time - 带时区日期时间
- java.time - 时区 ID
- java.time - 时区偏移量
- java.time 包枚举
- java.time - 月份
- java.time 实用资源
- java.time - 讨论
java.time.Instant.getEpochSecond() 方法示例
描述
java.time.Instant.getEpochSecond() 方法获取 1970-01-01T00:00:00Z 的 Java 起始时间相差的秒数。
申明
以下是 java.time.Instant.getEpochSecond() 方法的申明。
public long getEpochSecond()
返回值
从 1970-01-01T00:00:00Z 起始时间相差的秒数。
示例
以下示例展示了 java.time.Instant.getEpochSecond() 方法的使用。
package com.tutorialspoint; import java.time.Instant; public class InstantDemo { public static void main(String[] args) { Instant instant = Instant.parse("2017-03-03T10:37:30.00Z"); System.out.println(instant.getEpochSecond()); } }
当我们编译并运行以上程序时,会产生以下结果 −
1488537450
广告