在Java中,可以使用java.time
包中的LocalDate
類和Month
枚舉來獲取月份
import java.time.LocalDate;
import java.time.Month;
public class Main {
public static void main(String[] args) {
// 獲取當前日期
LocalDate currentDate = LocalDate.now();
// 獲取月份
Month month = currentDate.getMonth();
// 輸出月份
System.out.println("當前月份: " + month);
}
}
這個示例將輸出當前月份的名稱(例如:JANUARY、FEBRUARY等)。
如果你想要獲取月份的數字表示(1-12),可以使用getMonthValue()
方法:
int monthNumber = currentDate.getMonthValue();
System.out.println("當前月份數字: " + monthNumber);
這將輸出一個整數值,表示當前月份(1表示1月,12表示12月)。