/**
* 判断当前时间是否在"07:07~10:10"格式数据时间段内;
* @param `timeStr`
* @return
*/
private boolean isInTimeRange(String timeStr){
String[] parts = timeStr.split("[~|:]");
if (parts.length != 4){
System.out.println(timeStr + "___时间格式参数错误");
return false;
}
LocalTime now = LocalTime.now();// 获取当前时间
// 定义开始时间和结束时间
LocalTime startTime = LocalTime.of(Integer.parseInt(parts[0]), Integer.parseInt(parts[1])); // 07:07
LocalTime endTime = LocalTime.of(Integer.parseInt(parts[2]), Integer.parseInt(parts[3])); // 10:10
// 判断当前时间是否在时间段内
if (now.isAfter(startTime) && now.isBefore(endTime)) {
System.out.println("当前时间" + now + "在" + timeStr + "时间段内");
return true;
}
System.out.println("时间" + now + "不在" + timeStr + "时间段内");
return false;
}
标签:10,07,timeStr,parts,时间段,now,LocalTime
From: https://www.cnblogs.com/pansidong/p/18001607