What's the best way to get the current date/time?
|
It depends on what form of date / time you want:
People who know about these things recommend Joda-time as having (by far) the best APIs for doing things involving time point and duration calculations. |
|||
|
|
|
if you just need to output a time stamp in format YYYY.MM.DD-HH.MM.SS (very frequent case), you'll maybe would like following solution:
|
|||
|
|
|
Have you looked at java.util.Date? It is exactly what you want. |
|||||||||||||||
|
(Its Working) |
||||
|
|
|
There are many different methods: |
|||
|
|
|
Have a look at the Date class. There's also the newer Calendar class which is the preferred method of doing many date / time operations (a lot of the methods on Date have been deprecated.) If you just want the current date, then either create a new Date object or call |
|||
|
|
|
As mentioned the basic Date() can do what you need in terms of getting the current time. In my recent experience working heavily with Java dates there are a lot of oddities with the built in classes (as well as deprecation of many of the Date class methods). One oddity that stood out to me was that months are 0 index based which from a technical standpoint makes sense, but in real terms can be very confusing. If you are only concerned with the current date that should suffice - however if you intend to do a lot of manipulating/calculations with dates it could be very beneficial to use a third party library (so many exist because many Java developers have been unsatisfied with the built in functionality). I second Stephen C's recommendation as I have found Joda-time to be very useful in simplifying my work with dates, it is also very well documented and you can find many useful examples throughout the web. I even ended up writing a static wrapper class (as DateUtils) which I use to consolidate and simplify all of my common date manipulation. |
|||
|
|
It's automatically populated with the time it's instantiated. |
||||
|
|
