java.time.LocalDateTime atOffset()方法

java.time.LocalDateTime.atOffset(ZoneOffset offset)方法将此日期与偏移量(offset)组合以创建OffsetDateTime。

1 语法

public OffsetDateTime atOffset(ZoneOffset offset)

2 参数

offset:要与之结合的偏移量,而不是null。

3 返回值

从此日期和指定时间形成的偏移日期时间,不为null。

4 示例 

package com.yiidian;

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

public class LocalDateTimeDemo {
   public static void main(String[] args) {
 LocalDateTime date = LocalDateTime.parse("2017-02-03T12:30:30");
      System.out.println(date);  
      OffsetDateTime date1 = date.atOffset(ZoneOffset.ofHours(2));
      System.out.println(date1);  
   }
}

输出结果为:

2017-02-03T12:30:30
2017-02-03T12:30:30+02:00

 

热门文章

优秀文章