- 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 - Period
- java.time - Year
- java.time - YearMonth
- java.time - ZonedDateTime
- java.time - ZoneId
- java.time - ZoneOffset
- java.time 包枚举
- java.time - Month
- java.time 实用资源
- java.time - 讨论
java.time.Instant.ofEpochMilli() 方法示例
描述
java.time.Instant.ofEpochMilli(long epochMilli) 方法获取一个即时,它使用的是自 1970-01-01T00:00:00Z 以来的毫秒数。
声明
以下是 java.time.Instant.ofEpochMilli(long epochMilli) 方法的声明。
public static Instant ofEpochMilli(long epochMilli)
参数
epochMilli − 自 1970-01-01T00:00:00Z 以来的毫秒数。
返回值
即时,非空。
异常
DateTimeException − 如果即时超过最大或最小即时。
示例
以下示例显示了如何使用 java.time.Instant.ofEpochMilli(long epochMilli) 方法。
package com.tutorialspoint; import java.time.Instant; public class InstantDemo { public static void main(String[] args) { Instant instant = Instant.ofEpochMilli(10000); System.out.println(instant); } }
让我们编译并运行以上程序,这将产生以下结果 −
1970-01-01T00:00:10Z
广告