判断当前是否在某个范围内
How to find if a date-time is in given time slot in Groovy? | < One Byte at a Time />
public Boolean nowBetween(String beg, String end, String format = "HH:mm") { def timeBeg = new SimpleDateFormat(format).parse(beg); def timeEnd = new SimpleDateFormat(format).parse(end); def timeRange = timeBeg..timeEnd; def timeNow = new SimpleDateFormat(format).format(new Date()); def time = new SimpleDateFormat(format).parse(timeNow); return timeRange.containsWithinBounds(time); }
参考文献
K4NZ / 处理日期时间
Groovy - Dates & Times - Tutorialspoint
DateTimeExtensions (Groovy 3.0.6)