溫馨提示×

java如何獲取當(dāng)前時(shí)間月份

小億
208
2024-08-12 13:06:35
欄目: 編程語言

在Java中獲取當(dāng)前時(shí)間的月份可以使用java.time.LocalDatejava.time.Month類來實(shí)現(xiàn)。以下是一個(gè)示例代碼:

import java.time.LocalDate;
import java.time.Month;

public class Main {
    public static void main(String[] args) {
        // 獲取當(dāng)前日期
        LocalDate currentDate = LocalDate.now();

        // 獲取當(dāng)前月份
        Month currentMonth = currentDate.getMonth();

        System.out.println("當(dāng)前月份為: " + currentMonth);
    }
}

在上面的代碼中,首先使用LocalDate.now()方法獲取當(dāng)前日期,然后調(diào)用getMonth()方法獲取當(dāng)前月份,并將其打印出來。

0