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());
广告