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)
参数
epochSecond − 从 1970-01-01T00:00:00Z 开始的秒数。
返回值
瞬间,不为空。
异常
DateTimeException − 如果瞬间超过最大或最小瞬间。
示例
下面的例子展示了 java.time.Instant.ofEpochSecond(long epochSecond) 方法的使用。
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