java.time.OffsetDateTime from()方法

java.time.OffsetDateTime.from(TemporalAccessor temporal)方法从时态对象获取OffsetDateTime的实例。

1 语法

public static OffsetDateTime from(TemporalAccessor temporal)

2 参数

temporal:要转换的时间对象,而不是null。

3 返回值

本地日期,不为null。

4 示例 

package com.yiidian;

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

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

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

输出结果为:

2017-03-21T12:15:35.619+05:30

 

热门文章

优秀文章