gpt4 book ai didi

android - 比较耗时(例如 : 08:00 am) to current time android

转载 作者:行者123 更新时间:2023-11-30 01:48:03 29 4
gpt4 key购买 nike

我有一个 array 时间。我每次都从中检索以将其与当前时间进行比较,以便删除耗时并创建一个包含剩余时间的新 array

我正在比较耗时

String timeSlots[] = {"08:00 AM to 08:30 AM", "08:30 AM to 09:00 AM", "09:00 AM to 09:30 AM", "09:30 AM to 10:00 AM", "10:00 AM to 10:30 AM", "10:30 AM to 11:00 AM", "11:00 AM to 11:30 AM", "11:30 AM to 12:00 PM", "12:00 PM to 12:30 PM", "12:30 PM to 01:00 PM", "01:00 PM to 01:30 PM", "01:30 PM to 02:00 PM", "02:00 PM to 02:30 PM", "02:30 PM to 03:00 PM", "03:00 PM to 03:30 PM", "03:30 PM to 04:00 PM", "04:00 PM to 04:30 PM", "04:30 PM to 05:00 PM", "05:00 PM to 05:30 PM", "05:30 PM to 06:00 PM", "06:00 PM to 06:30 PM", "06:30 PM to 07:00 PM", "07:00 PM to 07:30 PM", "07:30 PM to 08:00 PM", "08:00 PM to 08:30 PM", "08:30 PM to 09:00PM"};


for (int i = 0; i < timeSlots.length; i++) {
timeSlotesTemp[i] = timeSlots[i].substring(0, 8);
removeElapsedTime(timeSlotesTemp[i].toLowerCase());
}

public void removeElapsedTime(String elapsedTime) { // elapsedTime = 08:00 pm
try {
SimpleDateFormat dateFormat = new SimpleDateFormat("hh:mm a");
Date elapsedDate = dateFormat.parse(elapsedTime);
String strElapsedDate=dateFormat.format(elapsedDate);

Calendar calendar = Calendar.getInstance();
Date currentDate = calendar.getTime();
String calculatedDate = dateFormat.format(currentDate);
if (new Date(strElapsedDate).compareTo(new Date(calculatedDate))<0) {
finalTimeSlotes.remove(elapsedTime);
}
else if (new Date(strElapsedDate).compareTo(new Date(calculatedDate))>0) {
finalTimeSlotes.add(elapsedTime);
}

} catch (Exception e) {
Log.e(TAG, "" + e);
}
}

我在比较时间时得到 java.lang.IllegalArgumentException: Parse error: 03:30 pm

最佳答案

为什么不比较日期对象而不是日期字符串。这是示例代码。

   public static void removeElapsedTime(String elapsedTime) { // elapsedTime = 08:00 pm
try {
Date elapsedDate = getDateFromTimeString(elapsedTime);
Calendar calendar = Calendar.getInstance();
Date currentDate = calendar.getTime();
if (elapsedDate.compareTo(currentDate) < 0) {
finalTimeSlotes.remove(elapsedTime);
} else if (elapsedDate.compareTo(currentDate) > 0) {
finalTimeSlotes.add(elapsedTime);
}
} catch (Exception e) {
e.printStackTrace();
System.err.println("" + e);
}
return;
}

public static Date getDateFromTimeString(String time) {
String currentDate = new SimpleDateFormat("dd-MM-yyyy").format(new Date());
SimpleDateFormat df1 = new SimpleDateFormat("dd-MM-yyyy hh:mm a");
Date date = null;
try {
date = df1.parse(currentDate + " " + time);
} catch (ParseException e) {
e.printStackTrace();
}
return date;
}

编辑:
java.lang.IllegalArgumentException: Parse error: 03:30 pm 的原因是您只传递时间字符串来创建新的日期对象。您还需要将日期字符串与时间字符串一起传递。

关于android - 比较耗时(例如 : 08:00 am) to current time android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33434426/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com