java.time.ZonedDateTime getMonth()方法

java.time.ZonedDateTime.getMonth()方法使用Month枚举获取月份字段。

1 语法

public Month getMonth()

2 参数

3 返回值

一年中的月份值,不是null。

4 示例 

package com.yiidian;

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

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

      ZonedDateTime date = ZonedDateTime.parse("2017-03-28T12:25:38.492+05:30[Asia/Calcutta]");
      System.out.println(date.getMonth());  
   }
}

输出结果为:

MARCH

 

热门文章

优秀文章