Where is maven central repository?
Posted: 20 Jul 2009 04:41 AM PDT
Java – How to get current date time – date() ,calender() ,SimpleDateFormat()
Posted: 20 Jul 2009 04:39 AM PDT
We can get current date time in java with three classes – SimpleDateFormat(), Date() or Calender().
Here i demonstrate two examples to show how to get current date time in java.
1) Date() + SimpleDateFormat()
DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
Date date = new Date();
System.out.println(dateFormat.format(date));
2) Calender() + SimpleDateFormat()
DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
Calendar cal = Calendar.getInstance();
System.out.println(dateFormat.format(cal.getTime()));
P.S Please access java documentation here to understand more date time format in SimpleDateFormat
http://java.sun.com/j2se/1.4.2/docs/api/java/text/SimpleDateFormat.html
Here is full source code.
| package com.mkyong; |
No comments:
Post a Comment