在Java中獲取當(dāng)前時(shí)間的月份可以使用java.time.LocalDate
和java.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)前月份,并將其打印出來。