在Java中,可以使用java.time.LocalDate
類來獲得當(dāng)前的月份。下面是一個示例代碼:
import java.time.LocalDate;
public class Main {
public static void main(String[] args) {
LocalDate currentDate = LocalDate.now();
int currentMonth = currentDate.getMonthValue();
System.out.println("當(dāng)前月份:" + currentMonth);
}
}
運行以上代碼會輸出當(dāng)前的月份。