java.time.OffsetDateTime toInstant()方法

java.time.OffsetDateTime.toInstant()方法将此日期时间转换为Instant。

1 语法

public Instant toInstant()

2 参数

3 返回值

表示同一时刻的Instant,而不是null。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.OffsetDateTime toInstant()方法
 */
import java.time.OffsetDateTime;

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

      OffsetDateTime date = OffsetDateTime.now();
      System.out.println(date.toInstant());  
   }
}

输出结果为:

2017-03-21T08:45:08.755Z

 

热门文章

优秀文章