I have a String which has the time. I need to round it off to the nearest hour and also the nearest minute. How do I do it in java? Ex: String time="12:58:15"; I need to round it off to 1:00:00 and also 12:58:00

link|improve this question

33% accept rate
7  
Possible solution here stackoverflow.com/questions/3553964/… – r0ast3d Nov 22 '11 at 20:19
feedback

3 Answers

For calendar operations you have to use Calendar class. In your case you would do something like this:

package test;

import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;

public class TestDate {

    public static void main(String[] args) {
    Calendar c = new GregorianCalendar();
    c.set(Calendar.HOUR_OF_DAY, 12);
    c.set(Calendar.MINUTE, 58);
    c.set(Calendar.SECOND, 15);
    Date d = c.getTime();

    System.out.println("Start point: " + d.toString());
    System.out.println("Nearest whole minute: " + toNearestWholeMinute(d));
    System.out.println("Nearest whole hour: " + toNearestWholeHour(d));
    }

    static Date toNearestWholeMinute(Date d) {
    Calendar c = new GregorianCalendar();
    c.setTime(d);

    if (c.get(Calendar.SECOND) >= 30)
        c.add(Calendar.MINUTE, 1);

    c.set(Calendar.SECOND, 0);

    return c.getTime();
    }

    static Date toNearestWholeHour(Date d) {
    Calendar c = new GregorianCalendar();
    c.setTime(d);

    if (c.get(Calendar.MINUTE) >= 30)
        c.add(Calendar.HOUR, 1);

    c.set(Calendar.MINUTE, 0);
    c.set(Calendar.SECOND, 0);

    return c.getTime();
    }

}

And the result:

Start point: Tue Nov 22 12:58:15 CET 2011
Nearest whole minute: Tue Nov 22 12:58:00 CET 2011
Nearest whole hour: Tue Nov 22 13:00:00 CET 2011
link|improve this answer
Thanks for the reply. I need to be using a String object as mentioned above as I would be getting it from a text file. – Srinivas Nov 23 '11 at 15:46
feedback

One way is to first convert it into a Date using SimpleDateFormat and its parse method (The javadoc will explain the format you need). Then you can look at the seconds and determine whether you should go up a minute or down (if it goes up, set the seconds to 0 and add a minute). Likewise for the hour, just look at minutes and if it's less than 30, round down and if greater than thirty set to zero and increase the hour.

link|improve this answer
Thanks for the reply. I need to be using a String object as mentioned above as I would be getting it from a text file. – Srinivas Nov 23 '11 at 15:46
You can use the simple date format to convert to date, perform your work, then use it to convert back to String. Probably a lot more reliable than parsing all the possible permutations of the string. But, you can do it the hard way if you wish. – AHungerArtist Nov 23 '11 at 17:58
feedback

Create a Date using SimpleDateFormat. Create GregorianCalendar from the Date. Roll the minutes or seconds by 30. Then set minutes or seconds to 0.

link|improve this answer
Thanks for the reply. I need to be using a String object as mentioned above as I would be getting it from a text file. – Srinivas Nov 23 '11 at 15:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.