java.time.LocalDateTime atZone()方法

java.time.LocalDateTime.atZone(ZoneId zone)方法将此日期时间与时区组合以创建ZonedDateTime。

1 语法

public ZonedDateTime atZone(ZoneId zone)

2 参数

zone:要使用的时区,而不是null。

3 返回值

从此日期时间形成的分区日期时间,而不是null。

4 示例 

package com.yiidian;

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

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

      LocalDateTime date = LocalDateTime.parse("2017-02-03T12:30:30");
      System.out.println(date);  
      ZonedDateTime date1 = date.atZone(ZoneId.systemDefault());
      System.out.println(date1);  
   }
}

输出结果为:

2017-02-03T12:30:30
2017-02-03T12:30:30+05:30[Asia/Calcutta]

 

热门文章

优秀文章