我的方法可以采用两种不同类型的日期格式:
Credit card
到期日在该月的最后一天被视为已过期。因此,如果cc日期是2017年5月(05/17),则该cc将于5月31日过期。
资金到期日期将在其到期日到期。因此,如果我在同一天查看它,它应该在资金到期时返回TRUE。
这是我的代码:
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import java.util.Date;
public static boolean dateHasExpired(String dateInput)
{
LocalDate d = LocalDate.now();
LocalDate dateParsed = null;
if (dateInput.contains("/"))
{
int iYear = Integer.parseInt(dateInput.substring(dateInput.indexOf("/") + 1));
int iMonth = Integer.parseInt(dateInput.substring(0, dateInput.indexOf("/")));
int daysInMonth = LocalDate.of(iYear, iMonth, 1).getMonth().maxLength();
dateInput = iMonth+"/"+daysInMonth+"/"+iYear;
}
else
{
dateInput = ConvertDate(dateInput, "yyyyMMdd", "MM/dd/yyyy");
}
DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("MM/dd/yyyy");
dateParsed = LocalDate.parse(dateInput, dateTimeFormatter);
return d.compareTo(dateParsed) <= 0;
}
public static String ConvertDate(String dateValue, String currentFormat, String requiredFormat)
{
SimpleDateFormat inFormatter = new SimpleDateFormat(currentFormat);
SimpleDateFormat outFormatter = new SimpleDateFormat(requiredFormat);
String outDate = "";
try
{
java.util.Date date = inFormatter.parse(dateValue);
outDate = outFormatter.format(date);
}
catch (ParseException e) {
ErrorLogger.logError ( e );
}
return outDate;
}
有谁知道更好的方法吗?
我还注意到LocalDate
没有考虑Leap Year
,因此2015年2月有29天,就像2016年2月一样,所以我的daysInMonth
将不是一个好的数字。
看起来Date比5月份的yy和5月份更适合LocalDate。
答案 0 :(得分:3)
您可以使用java.time.YearMonth
类,其中包含返回相应月份最后一天的方法(并且还会处理闰年):
public static boolean dateHasExpired(String dateInput) {
LocalDate today = LocalDate.now();
LocalDate dateParsed = null;
if (dateInput.contains("/")) {
// parse credit card expiration date
YearMonth ym = YearMonth.parse(dateInput, DateTimeFormatter.ofPattern("MM/yy"));
// get last day of month (taking care of leap years)
dateParsed = ym.atEndOfMonth();
} else {
// parse funding expiration date
dateParsed = LocalDate.parse(dateInput, DateTimeFormatter.ofPattern("yyyyMMdd"));
}
// expired if today is equals or after dateParsed
return ! today.isBefore(dateParsed);
}
使用此代码(考虑今天 2017年5月2日):
System.out.println(dateHasExpired("04/17")); // true
System.out.println(dateHasExpired("05/17")); // false
System.out.println(dateHasExpired("06/17")); // false
System.out.println(dateHasExpired("20170501")); //true
System.out.println(dateHasExpired("20170502")); // true
System.out.println(dateHasExpired("20170503")); // false
请注意,atEndOfMonth()
方法负责闰年,因此这些方法也可以使用:
System.out.println(dateHasExpired("02/15"));
System.out.println(dateHasExpired("02/16"));
我在System.out.println(dateParsed);
方法中添加了dateHasExpired
,只是为了检查日期是否正确解析。以上日期的输出分别为:
2015-02-28
2016-02-29
并dateHasExpired
按预期返回true
。