我将两种不同的日期格式转换为本地时区,并使用简单的日期格式转换为单一格式,然后比较它们是否相等。 我的代码无法转换代码中给定的起始日期。
当我从“ 2019年9月11日-BRT / BRDT上午1:00”开始提供日期时,我的代码工作正常,但在PM时间失败。样本日期为“ 2019年9月11日-BRT / BRDT 1:00 pm”。
公共类DateSample {
public static void main(String[] args) throws ParseException {
DateSample obj = new DateSample ();
String str= obj.dateCompare(
"MMM dd,yyyy - HH:mm aaa z",
"yyyy-MM-dd'T'HH:mm:ss.SSSXXX",
"Sep 11, 2019 - 1:00 pm BRT/BRDT",
"2019-09-11T13:00:00.000-03:00"
);
System.out.println(str);
}
String dateCompare(String fromDateFormat, String toDateFormat,String fromdate, String todate)throws ParseException{
String CheckFormat = "MMMMM yyyy HH:mm:ss.SSSZ";
String dateStringFrom;
String dateStringTo;
Date DF = new Date();
Date DT = new Date();
int flagtodate=0;
int flagfromdate=0;
try
{
//DateFormatdf = DateFormat.getDateInstance(DateFormat.SHORT);
DateFormat FromDF = new SimpleDateFormat(fromDateFormat);
FromDF.setLenient(false);
Date FromDate = FromDF.parse(fromdate);
dateStringFrom = new SimpleDateFormat(CheckFormat).format(FromDate);
DateFormat FromDF1 = new SimpleDateFormat(CheckFormat);
DF=FromDF1.parse(dateStringFrom);
System.out.println("From Date is ok = " + dateStringFrom);
}
catch (ParseException e)
{
flagfromdate = 1;
}
catch (IllegalArgumentException e)
{
flagfromdate = 1;
}
try
{
//DateFormatdf = DateFormat.getDateInstance(DateFormat.SHORT);
DateFormat ToDF = new SimpleDateFormat(toDateFormat);
ToDF.setLenient(false);
Date ToDate = ToDF.parse(todate);
dateStringTo = new SimpleDateFormat(CheckFormat).format(ToDate);
DateFormat ToDF1 = new SimpleDateFormat(CheckFormat);
DT=ToDF1.parse(dateStringTo);
System.out.println("To Date is ok = " + dateStringTo);
}
catch (ParseException e)
{
flagtodate=1;
}
catch (IllegalArgumentException e)
{
flagtodate=1;
}
if(flagfromdate == 0 &&flagtodate==0)
{
if(DF.equals(DT))
{
// if the date is same
return "FromDate and ToDate are same";
}
else if(DF.before(DT))
{
//if the from date is before the to date
return "FromDate is less than ToDate";
}
else
{
// if the date from is after the to date
return "FromDate is greater than the ToDate";
}
}
return "Error";
}
}
可以确定日期= 2019年9月21:30:00.000 + 0530
错误
确定日期为开始= 2019年9月09:30:00.000 + 0530
可以确定日期= 2019年9月21:30:00.000 + 0530
FromDate小于ToDate