Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What's the best way to get the current date/time?

share|improve this question

9 Answers

up vote 58 down vote accepted

It depends on what form of date / time you want:

  • If you want the date / time as a single numeric value, then System.currentTimeMillis() gives you that, expressed as the number of milliseconds after the UNIX epoch (as a Java long). This value is a delta from a UTC time-point, and is independent of the local time-zone ... assuming that the system clock has been set correctly.

  • If you want the date / time in a form that allows you to access the components (year, month, etc) numerically, you could use one of the following:

    • new Date() gives you a Date object initialized with the current date / time. The problem is that the Date API methods are mostly flawed ... and deprecated.

    • Calendar.getInstance() gives you a Calendar object initialized with the current date / time, using the default Locale and TimeZone. Other overloads allow you to use a specific Locale and/or TimeZone. Calendar works ... but the APIs are still cumbersome.

    • new org.joda.time.DateTime() gives you a Joda-time object initialized with the current date / time, using the default time zone and chronology. There are lots of other Joda alternatives ... too many to describe here.

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.

share|improve this answer

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:

String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(Calendar.getInstance().getTime());
share|improve this answer

Just create a Date object...

Date date = new Date();
share|improve this answer

Have you looked at java.util.Date? It is exactly what you want.

share|improve this answer
This package is deprecated? – user496949 Mar 3 '11 at 1:52
Some of the methods are deprecated, but the no argument constructor isn't, and it is what you want. – Starkey Mar 3 '11 at 1:54
I love how they've been deprecated for 13 years and six versions but they're still in there. – Andrew Marshall Mar 3 '11 at 1:57
1  
Yep what's the harm of having a few deprecated methods for backwards compability around? A minimal larger standard library? I think we can live with that. – Voo Mar 3 '11 at 2:38
1  
No I understand why it's still around, I just think it's interesting. Deprecation should yield eventual removal, not because of the size of the library, but because it was deprecated for a reason: it's a bad idea to use it. That's my opinion and this is definitely a touchy topic. – Andrew Marshall Mar 3 '11 at 2:48
show 1 more comment
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(Calendar.getInstance().getTime());
System.out.println(timeStamp );

(Its Working)

share|improve this answer

There are many different methods:

share|improve this answer

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 Calendar.getInstance();.

share|improve this answer

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.

share|improve this answer
java.util.Date date = new java.util.Date();

It's automatically populated with the time it's instantiated.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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