想知道如何将JDateChooser与LocalNow进行比较



所以我正在尝试创建一个 if else 语句,如果 jdatechooser 中的日期早于今天的日期,则会出现错误消息。据我所知,您可以将今天的日期作为 LocalDate.now(),将其格式化为字符串,然后执行 try-catch 将其解析回 Date。对于 jdatechooser,您可以将其作为 Date 抓取,将其格式化为字符串,然后执行 try-catch 以将其解析回日期。唯一的问题是当你做jdate.before(localdate)时会发生错误。有没有其他方法可以做到这一点?我看到您可以将今天的日期作为实例获取,但我对此还没有太多经验。

这是我尝试过的代码:

try {
//Checks to see if New Due Date is a date set before today's date
//Grabs today's date, converts it into string, then converts it into date
LocalDate ld = LocalDate.now();
SimpleDateFormat sdf = new SimpleDateFormat("MMM dd, yyyy");
String tds = sdf.format(ld);
Date tdd = sdf.parse(tds);
//Grabs reactivateDateChooser1, converts it into string, then converts it into date
Date rdc = reactivateDateChooser1.getDate();
SimpleDateFormat sdf1 = new SimpleDateFormat("MMM dd, yyyy");
String rdcs = sdf1.format(rdc);
Date rdcd = sdf1.parse(rdcs);
//If the new Due Date is before or on today's date, then error message will show
if(rdcd.before(tdd)){
JOptionPane.showMessageDialog(null, "Please select a date after " + tds, "Select Valid Date", JOptionPane.ERROR_MESSAGE);
}
//If the date chooser is empty, then error message will show
else if (reactivateDateChooser1.getDate() == null){
JOptionPane.showMessageDialog(null, "Please select a date", "Needs Date", JOptionPane.ERROR_MESSAGE);
}
//Otherwise, if the new date is after today's date, then the function will happen
else if (rdcd.after(tdd)){
changeStatusToActive();
statusCheck1.setText("");
refreshClassTable();
closeReactivateDialog();
}
} catch(Exception e){
JOptionPane.showMessageDialog(null, e);
}

这是我得到的错误:

java.lang.IllegalArgumentException: Cannot format given Object as a Date
DateTimeFormatter dateFormatter
= DateTimeFormatter.ofPattern("MMM dd, yyyy", Locale.ITALY);
//Checks to see if New Due Date is a date set before today's date
//Grabs today's date
LocalDate today = LocalDate.now();
//Grabs reactivateDateChooser1, converts it into LocalDate (if not null)
Date reactivateUtilDate = reactivateDateChooser1.getDate();
//If the date chooser is empty, then error message will show
if (reactivateUtilDate == null) {
JOptionPane.showMessageDialog(null, "Please select a date", 
"Needs Date", JOptionPane.ERROR_MESSAGE);
} else {
LocalDate reactivateDate = reactivateUtilDate.toInstant()
.atZone(ZoneId.of("Asia/Singapore"))
.toLocalDate();
//If the new Due Date is before or on today's date, then error message will show
//Otherwise, if the new date is after today's date, then the function will happen
if (reactivateDate.isAfter(today)) {
changeStatusToActive();
statusCheck1.setText("");
refreshClassTable();
closeReactivateDialog();
} else {
String todayString = today.format(dateFormatter);
JOptionPane.showMessageDialog(null, 
"Please select a date after " + todayString,
"Select Valid Date", JOptionPane.ERROR_MESSAGE);
}
}

与其从现代LocalDate转换为过时的Date,不如尽可能多地使用现代更好的API。我知道您无法避免从JDateChooser中获得java.util.Date,因此首先要将其转换为现代Instant类型,并从那里进行进一步转换以获得可以与您拥有的LocalDate进行比较。LocalDate具有用于与其他LocalDate对象进行比较的isBeforeisAfter方法。

DateSimpleDateFormat和朋友的旧日期和时间类已被证明设计不佳,尤其是SimpleDateFormat是出了名的麻烦。看看Stack Overflow上有多少关于SimpleDateFormat令人惊讶和不需要的行为的问题。所有这些都是甲骨文在2014年发布java.time作为替代品的原因。当然,现代 API 使用起来要好得多。我热情推荐它。

我进一步建议您为格式化程序指定区域设置(即使您只指定Locale.getDefault())和从DateLocalDate的转换时区(即使您选择ZoneId.systemDefault()。因此,没有人需要怀疑使用了区域设置和时区,并且您有意识地选择了它们。最后,我尝试了更多的解释变量名称。

编辑:

在阅读了 Ole V.V. 提到的日历和简单日期格式化程序问题后,我意识到我给出的解决方案不是很好......下面是使用 LocalDate 和 DateTimeFormatter 的代码:

LocalDate ld = LocalDate.now();
DateTimeFormatter dtf = DateTimeFormatter.ofPattern("MMM dd, yyyy");
String output = ld.format(dtf);

源语言:

我无法解释为什么Ole V.V.告诉你要避免像SimpleDateFormat这样的课程,我对这个主题还不够了解。但是,要实现您要执行的操作,您可以使用:

Calendar cal = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("MMM dd, yyyy");
String tds = sdf.format(cal.getTime());

这应该可以为您提供当前时间和日期,并根据需要对其进行格式化。

相关内容

  • 没有找到相关文章

最新更新