I have two times opening and close. I want to generate as much slot which can be accommodate within defined range with fixed number of minutes. For e.g opening time: 12:30 pm and close timing: 3:30 pm respectively. So in this particular range i have to add minutes let's say 15 min increment every time until the time reaches to close time. Like 12:45, 12:30, ........ , 3:15, 3:30 pm exactly here i want to finish the loop but in my case it goes up to 12:06 am from 12:30 pm
String newTime = "";
SimpleDateFormat dateFormat = new SimpleDateFormat("hh:mm a");
Date date = dateFormat.parse(_model.getClinic_time_from());
SimpleDateFormat dateFormat1 = new SimpleDateFormat("hh:mm a");
Date date1 = dateFormat1.parse(_model.getClinic_time_to());
Date temp = date;
while (date1.compareTo(temp) < 0)
{
Calendar calendar = Calendar.getInstance();
calendar.setTime(temp);
calendar.add(Calendar.MINUTE, Integer.parseInt(_model.getSlot()));
newTime = dateFormat.format(calendar.getTime());
Apt_time_model ap = new Apt_time_model(dateFormat.format(temp.getTime()),newTime,"no status");
Apt_time_model ap1 = new Apt_time_model(ap.getApt_time_from(), ap.getApt_time_to(),ap.getStatus());
list.add(ap1);
temp = dateFormat.parse(newTime);
}
tl;dr
Details
You are using terrible date-date classes that were years ago supplanted by the modern java.time classes defined in JSR 310. For older Java, see the ThreeTen-Backport project. For older Android, see the ThreeTenABP project.
For time-of-day without a date and without a time zone, use
LocalTime
class.while
loopLoop in 15 minute increments until you reach the close time. Compare by calling
equals
,isBefore
, orisAfter
.See this code run live at IdeOne.com.
for
loopSome folks might prefer a one-liner
for
loop, for the same effect.Or:
Stream
Perhaps there might be some clever way to accomplish this with Java streams. But I cannot think of any.
Presentation
Generate text representing the meaning within each
LocalTime
object you collected.Be clear that a
LocalTime
is not aString
, and aString
is not aLocalTime
, but aString
object can hold text that happens to represent the content of aLocalTime
object.About java.time
The java.time framework is built into Java 8 and later. These classes supplant the troublesome old legacy date-time classes such as
java.util.Date
,Calendar
, &SimpleDateFormat
.To learn more, see the Oracle Tutorial. And search Stack Overflow for many examples and explanations. Specification is JSR 310.
The Joda-Time project, now in maintenance mode, advises migration to the java.time classes.
You may exchange java.time objects directly with your database. Use a JDBC driver compliant with JDBC 4.2 or later. No need for strings, no need for
java.sql.*
classes.Where to obtain the java.time classes?