Java 中的 LocalDateTime getMonth() 方法


可以使用 Java 中 LocalDateTime 类的 getMonth() 方法获取某个特定 LocalDateTime 的月份名称。此方法不需要任何参数,它将返回该年的月份名称。

演示这一点的程序如下所示 −

示例

 实际演示

import java.time.*;
public class Demo {
   public static void main(String[] args) {
      LocalDateTime ldt = LocalDateTime.parse("2019-02-18T23:15:30");
      System.out.println("The LocalDateTime is: " + ldt);
      System.out.println("The month is: " + ldt.getMonth());
   }
}

输出

The LocalDateTime is: 2019-02-18T23:15:30
The month is: FEBRUARY

现在让我们来了解一下上述程序。

首先显示 LocalDateTime。然后使用 getMonth() 方法显示 LocalDateTime 的月份名称。演示此操作的代码片段如下所示 −

LocalDateTime ldt = LocalDateTime.parse("2019-02-18T23:15:30");
System.out.println("The LocalDateTime is: " + ldt);
System.out.println("The month is: " + ldt.getMonth());

更新于: 2019 年 7 月 30 日

189 次浏览

开始你的职业生涯

完成课程,获得认证

开始学习
广告