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

I have first time as string '12:00:00' and another '19:00:00'

next how to check time portion of the day is within these time values?

share|improve this question

3 Answers

Using Joda Time you could do something like this:

DateTime start = new DateTime(2010, 5, 25, 12, 0, 0, 0);
DateTime end = new DateTime(2010, 5, 25, 21, 0, 0, 0);
Interval interval = new Interval(start, end);
DateTime test = new DateTime(2010, 5, 25, 16, 0, 0, 0);
System.out.println(interval.contains(test));
share|improve this answer

Create calendar instances of the start and end times for the same day as your 'test' date. Then you can easily compare the calendar objects to determine if the current date is inside or outside the range.

share|improve this answer

Instead of using the heavy weight classes, in your case you could do a simple string comparision to achieve the same:

  String from="12:00:00";
 String to ="19:00:00";
 String toCheck = "16:00:00";
 if ( toCheck.compareTo(from) >= 0 && toCheck.compareTo( to ) <= 0) {
     System.out.println("in range");
 }
 else {
     System.out.println("out of range");
 }

EDIT: Nice code

public class DateFilter {

    public static void main(String[] args) {

      String from="12:00:00";
      String to ="19:00:00";
      String toCheck = "16:00:00";
      System.out.println("inRange=" + isInRange( from, to, toCheck ));
    }

    public static boolean isInRange( String from, String to, String toCheck ) {
          return toCheck.compareTo(from) >= 0 && toCheck.compareTo( to ) <= 0;
      }
}
share|improve this answer
1  
@Downvoter I use this in production for filtering ranges it's the fastest way, since it doesn't create useless objects. Drawback need 24h representation. – stacker May 25 '10 at 11:46
I know it's been a while, but personally looking for specifically how to perform the calculation using JodaTime and the phrasing of the question's heading, this just is not a good answer. Had the question been how to perform the calculation - library agnostic - I'd give this a plus, but as it stands, I downvote it. – zrvan May 6 at 10:19

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.