Check if the time is within the min and max range
问题 I don't know what's happening here: I need to return true if the current time is between a given range, ex: now is 15:45:00 and is between 12:00:00(min) and 18:00:00(max), but this method is doing it wrong: private boolean verifyIfInside(String max, String min){ try { DateFormat dateFormat = new SimpleDateFormat ("HH:mm:ss"); Date date = new Date(); String hour1 = min; String hour2 = max; String newHour = dateFormat.format(date); Date minHour, maxHour, nowHour; minHour = dateFormat.parse