java.time.Instant.from() 方法示例



说明

java.time.Instant.from(TemporalAccessor temporal) 方法由时间对象获取 Instant 实例。

声明

以下是 java.time.Instant.from(TemporalAccessor temporal) 方法的声明。

public static Instant from(TemporalAccessor temporal)

参数

temporal - 要转换的时间对象,不可为 null。

返回值

时间戳,不可为 null。

异常

DateTimeException - 如果无法转换为 Instant。

示例

以下示例展示了 java.time.Instant.from(TemporalAccessor temporal) 方法的使用。

package com.tutorialspoint;

import java.time.Instant;
import java.time.ZonedDateTime;

public class InstantDemo {
   public static void main(String[] args) {

      ZonedDateTime zonedDateTime = ZonedDateTime.now();

      Instant instant = Instant.from(zonedDateTime);

      System.out.println(instant);
   }
}

让我们编译并运行以上程序,这将产生以下结果 -

2017-03-10T09:29:03.044Z
广告