Check if date is within time range using Joda or standard Java API

前端 未结 2 1519
不知归路
不知归路 2020-12-14 19:27

I have first time as string \'12:00:00\' and another \'19:00:00\'. How to check time portion of the day is within these time values?

2条回答
  •  旧巷少年郎
    2020-12-14 20:03

    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));
    

提交回复
热议问题