我有可以采用 2 种不同类型的日期格式的方法:
- MM/YY(信用卡到期日)
- yyyyMMdd(资金到期日)
Credit card
到期日被视为在该月的最后一天到期。因此,如果抄送日期是 2017 年 5 月 (05/17),则此抄送在 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
的数字不是一个好数字。
对于 yy 年和 5 月的第 5 个月,看起来 Date 比 LocalDate 更宽容。