Compare time in Android?

341 Views Asked by At

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

There are 1 best solutions below

8
On

tl;dr

List < LocalTime > slots = new ArrayList <>();
for ( LocalTime lt = open ; lt.isBefore( close ) ; lt = lt.plusMinutes( 15 ) ) { slots.add( lt ); }

slots.toString(): [12:30, 12:45, 13:00, 13:15, 13:30, 13:45, 14:00, 14:15, 14:30, 14:45, 15:00, 15:15]

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.

12:30 pm and close timing: 3:30 pm

final LocalTime open = LocalTime.of( 12 , 30 );
final LocalTime close = LocalTime.of( 15 , 30 );

while loop

Loop in 15 minute increments until you reach the close time. Compare by calling equals, isBefore, or isAfter.

List < LocalTime > slots = new ArrayList <>();
LocalTime lt = open;
while ( lt.isBefore( close ) )
{
    slots.add( lt );
    lt = lt.plusMinutes( 15 );
}

System.out.println( "slots = " + slots );

See this code run live at IdeOne.com.

slots = [12:30, 12:45, 13:00, 13:15, 13:30, 13:45, 14:00, 14:15, 14:30, 14:45, 15:00, 15:15]

for loop

Some folks might prefer a one-liner for loop, for the same effect.

List < LocalTime > slots = new ArrayList <>();
for ( LocalTime lt = open ; lt.isBefore( close ) ; lt = lt.plusMinutes( 15 ) ) { slots.add( lt ); }

Or:

List < LocalTime > slots = new ArrayList <>();
for ( LocalTime lt = open ;
      lt.isBefore( close ) ;
      lt = lt.plusMinutes( 15 ) )
{
    slots.add( lt );
}

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 a String, and a String is not a LocalTime, but a String object can hold text that happens to represent the content of a LocalTime object.

Locale locale = Locale.US;  // Or Locale.CANADA_FRENCH etc. 
DateTimeFormatter f = DateTimeFormatter.ofLocalizedTime( FormatStyle.SHORT ).withLocale( locale );
for ( LocalTime slot : slots )
{
    String output = slot.format( f );
    System.out.println( "output = " + output );
}

output = 12:30 PM

output = 12:45 PM

output = 1:00 PM


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?

Table of which java.time library to use with which version of Java or Android