For example suppose I have

String endTime = "16:30:45";

How would I determine whether right now is before this time?

link|improve this question

feedback

3 Answers

up vote 14 down vote accepted

First, you need to parse this:

SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss")
Date date = sdf.parse(endTime);

Then you can create use a calendar to compare the time:

Calendar c = Calendar.getInstance();
c.setTime(date);
Calendar now = Calendar.getInstance();
if (now.get(Calendar.HOUR_OF_DAY) > c.get(Calendar.HOUR_OF_DAY) .. etc) { .. }

Alternatively, you can create a calendar like now and set its HOUR, MINUTE and SECOND fields with the ones from the new calendar.

With joda-time you can do something similar.

new DateMidnight().withHour(..).widthMinute(..).isBefore(new DateTime())
link|improve this answer
This doesn't work because the date is stored as follows Thu Jan 01 16:34:50 GMT 1970 – deltanovember May 17 '11 at 13:22
yes. check my update – Bozho May 17 '11 at 13:32
feedback
SimpleDateFormat df = new SimpleDateFormat("HH:mm:ss");

Date d1=df.parse(endTime);
Date d2=df.parse(startTime);

long d1Ms=d1.getTime();
long d2Ms=d2.getTime();

if(d1Ms < d2Ms)
{
   //doSomething
}
else
{
   // something else
}
link|improve this answer
HH(0-23), not hh (1-12) – Bozho May 17 '11 at 12:52
thank you @bozho – silverback May 17 '11 at 13:00
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:

boolean beforeNow = 
    endTime.compareTo(
        new SimpleDateFormat("HH:mm:ss").format(new Date())) < 0;

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.