Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For example given a java.util.Date how could I test if the time was before 12.30 PM that day?

share|improve this question
If you have the freedom to choose, switch to using Joda Time - it's a much better API for working with date/time. new DateTime().isBefore(new DateTime().withHourOfDay(12).withMinuteOfHour(30)) – SteveD Aug 18 '11 at 8:20
@deltanovember why did you accept a wrong answer? The one you chose only tells you if the date is before 12:30 TODAY... useless. My answer on the other hand actually answers your question - it tells you if the date has a time that is before 12:30. Perhaps you would consider changing your accept vote to a correct answer? – Bohemian Aug 18 '11 at 9:53

7 Answers

up vote 4 down vote accepted

Have a look at Calendar.before() Method.

Calendar now = Calendar.getInstance();
now.set(Calendar.HOUR_OF_DAY, 12);
now.set(Calendar.MINUTE, 30);
Calendar givenDate = Calendar.getInstance();
givenDate.setTime(yourDate);

boolean isBefore = now.before(givenDate);
share|improve this answer
I think the problem he/she has is obtain the time that you calls yourDate – TheCharliemops Aug 18 '11 at 7:59
1  
The question says, yourDate is given. – flash Aug 18 '11 at 8:00
-1 Before anyone else up-votes, has anyone actually run this? It won't even compile because Calendar.getInstance() doesn't accept a date. This is a bad answer. – Bohemian Aug 18 '11 at 8:03
Use setTime method of Calendar class for setting the date. – Petar Minchev Aug 18 '11 at 8:05
1  
@Petar Minchev the OP asked to check if the time was before 12:30 on "...that day". This answer checks if the time is before 12:30 today. – msandiford Aug 18 '11 at 8:25
show 5 more comments

This works. It does the check using only the hour and minute portions of your date:

Date yourDate;
Calendar calendar = Calendar.getInstance();
calendar.setTime(yourDate);
boolean before = calendar.get(Calendar.HOUR) * 60 + calendar.get(Calendar.MINUTE) < 12 * 60 + 30;
share|improve this answer

You can create a Date with the current date and 12:30PM as the time and do a compareTo with the other date.

share|improve this answer

Use the GregorianCalendar class.

share|improve this answer

Create a Date startDate and endDate with the desired dates and then you can do something similar as this:

if (startDate.before(endDate))
{
  System.out.println("Date is before your given date");
}
share|improve this answer

You must use the function before() from java.util.Date and set the date to compare which a combination of Calendar.settime() function

share|improve this answer

I think @Bohemian has the best answer if you don't want to add dependencies, but IMO you should save yourself some time and give up on the java classes and add joda-time to your project :)

    static boolean isBefore1230(Date d) {
        return new DateTime(d).getMinuteOfDay() < 12 * 60 + 30;
    }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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