- java.time 包类
- java.time - 主页
- java.time - 时钟
- java.time - 持续时间
- java.time - 即时
- java.time - LocalDate
- java.time - LocalDateTime
- java.time - LocalTime
- java.time - MonthDay
- java.time - OffsetDateTime
- java.time - OffsetTime
- java.time - 周期
- java.time - 年
- java.time - 年月
- java.time - ZonedDateTime
- java.time - ZoneId
- java.time - ZoneOffset
- java.time 包枚举
- java.time - 月
- java.time 有用资源
- java.time - 讨论
java.time.Instant.ofEpochSecond() 方法示例
说明
java.time.Instant.ofEpochSecond(long epochSecond) 方法使用 1970-01-01T00:00:00Z 时间段的秒数获取 Instant 实例。
声明
下面是 java.time.Instant.ofEpochSecond(long epochSecond) 方法的声明。
public static Instant ofEpochSecond(long epochSecond)
java.time.Instant java.time.Instant.ofEpochSecond(long epochSecond)
参数
epochSecond - 从 1970-01-01T00:00:00Z 起的秒数。
返回值
一个 instant,非空。
异常
DateTimeException - 如果 instant 超过最大或最小 instant。
示例
package com.tutorialspoint; import java.time.Instant; public class InstantDemo { public static void main(String[] args) { Instant instant = Instant.ofEpochSecond(10000); System.out.println(instant); } }
在线演示
1970-01-01T02:46:40Z
打印页面