我想只验证年份和月份并打印邮件,无论日期和年份都是正确的任何想法?
if (data.getValue().equals(LocalDate.of(2014, 1, 15)) {
System.out.println("Success");
}
其中data
是JavaFX DatePicker
。
例如,我想要这样的东西
if (data.getValue().equals(LocalDate.of(2014, 1)) {
System.out.println("Success");
}
但是,任何人都可以帮助我吗?
答案 0 :(得分:1)
试试这个
if (data.getValue().getYear() == 2014 && data.getValue().getMonth() == Month.JANUARY) {
System.out.println("Success");
}