在Java中,可以使用java.time
包中的LocalDate
類來獲取當前年月日。以下是一個示例代碼:
import java.time.LocalDate;
public class Main {
public static void main(String[] args) {
LocalDate currentDate = LocalDate.now();
int year = currentDate.getYear();
int month = currentDate.getMonthValue();
int day = currentDate.getDayOfMonth();
System.out.println("當前年月日:" + year + "-" + month + "-" + day);
}
}
運行以上代碼,將輸出當前年月日。