How do you get Hours and Minutes since Date.getHours and Date.getMinutes got deprecated?
Note: The examples that I found in google search used the deprecated methods.
Thank you.
|
|
|
Try using Joda Time instead of standard java.util.Date classes. Joda Time library has much better API for handling dates.
See this question for pros and cons of using Joda Time library. Joda Time may also be included to some future version of Java as a standard component, see JSR-310. If you must use traditional java.util.Date and java.util.Calendar classes, see their JavaDoc's for help (java.util.Calendar and java.util.Date). You can use the traditional classes like this to fetch fields from given Date instance.
|
||||
|
|
From the Javadoc for Date.getHours
So use
and the equivalent for getMinutes. |
|||
|
|
|
First, import java.util.Calendar
|
||||
|
|
|
Try Calender. Use getInstance to get a Calender-Object. Then use setTime to set the required Date. Now you can use get(int field) with the appropriate constant like HOUR_OF_DAY or so to read the values you need. http://java.sun.com/javase/6/docs/api/java/util/Calendar.html |
|||
|
|
|
I would recommend looking ad joda time. http://joda-time.sourceforge.net/ I was afraid of adding another library to my thick project, but it's just easy and fast and smart and awesome. Plus, it plays nice with existing code, to some extent. |
|||
|
|
|
While I wouldn't recommend doing so, I think it's worth pointing out that although many methods on java.util.Date have been deprecated, they do still work. In trivial situations, it may be OK to use them. Also, java.util.Calendar is pretty slow, so getMonth and getYear on Date might be be usefully quicker. |
|||
|
|