How can I get the year, month, day, hours, minutes, seconds and milliseconds of the current moment in Java? I would like to have them as Strings.
How to get year, month, day, hours, minutes, seconds and milliseconds of the current moment in Java?
|
feedback
|
|
Make use of
This prints as of now (I'm at GMT-4): 2010-04-16 11:15:17.816 To convert an If your intent is after all to arrange and display them in a human friendly format, then I'd suggest to use
Which yields: 2010-04-16T11:15:17.816-0400 Fri, 16 Apr 2010 11:15:17 -0400 20100416111517 | |||||||
feedback
|
|
Switch to joda-time and you can do this in three lines
You also have direct access to the individual fields of the date without using a Calendar.
Output is as follows:
| ||||
|
feedback
|
|
Look at the API documentation for the java.util.Calendar class and its derivatives (you may be specifically interested in the GregorianCalendar class). | |||
|
feedback
|
|
Or use java.sql.Timestamp. Calendar is kinda heavy,I would recommend against using it in production code. Joda is better.
} | |||||
feedback
|
|
Calendar now = new Calendar() // or new GregorianCalendar(), or whatever flavor you need now.MONTH now.HOUR etc. | |||
feedback
|