For example suppose I have
String endTime = "16:30:45";
How would I determine whether right now is before this time?
|
feedback
|
|
First, you need to parse this:
Then you can create use a calendar to compare the time:
Alternatively, you can create a calendar like With joda-time you can do something similar.
| |||||
feedback
|
| |||||
|
feedback
|
|
Since Java has no builtin support for pure time values (just combined time/date values), you're probably better off implementing the comparison yourself. If the time is formatted as HH:mm:ss, this should do the trick:
The code does not handle date changes. I am not sure if you want to treat 23:00 to be before or after 01:00, but the code consider both times to be on the same date, e.g. 23:00 is after 01:00. | ||||
|
feedback
|