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
feedback
|
|
For calendar operations you have to use Calendar class. In your case you would do something like this:
And the result:
| |||
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. | |||||
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. | |||
feedback
|