最佳答案
我正在尝试将 String 格式的日期与当前日期进行比较。这就是我是如何做到的(还没有测试,但应该可以工作) ,但是我正在使用不推荐的方法。有什么好的建议吗?谢谢。
另外,我真的很讨厌用爪哇语约会。有很多方法可以做同样的事情,你真的不知道哪一个是正确的,因此我的问题在这里。
String valid_until = "1/1/1990";
Calendar cal = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("dd/mm/yyyy");
Date strDate = sdf.parse(valid_until);
int year = strDate.getYear(); // this is deprecated
int month = strDate.getMonth() // this is deprecated
int day = strDate.getDay(); // this is deprecated
Calendar validDate = Calendar.getInstance();
validDate.set(year, month, day);
Calendar currentDate = Calendar.getInstance();
if (currentDate.after(validDate)) {
catalog_outdated = 1;
}