| Author |
date and time
|
mangesh lele
Greenhorn
Joined: Jan 17, 2003
Posts: 18
|
|
can anybody tell me how to get current system time and date as output? i looked up the docs and found an example that requires setting timezone, using class GregorianCalendar there must be a less complicated way!
|
 |
VipinJCP Dube
Greenhorn
Joined: Jan 02, 2003
Posts: 4
|
|
Hi Mangnesh Ofcourse , Java has a simple wayout to you problem. For accessing current Date and Time , you will have to create an object of Date class and access the date and time, like System.out.println(new java.util.Date()); and GregorianCalendar class is used to change the date format. So try out these also GregorianCalendar d1 = new GregorianCalendar(1988, 05, 06); // Jun 6 GregorianCalendar d2 = new GregorianCalendar();// today Calendar d3 = Calendar.getInstance();// today System.out.println("It was then " + d1.getTime()); System.out.println("It is now " + d2.getTime()); System.out.println("It is now " + d3.getTime()); d3.set(Calendar.YEAR, 1915); d3.set(Calendar.MONTH, Calendar.APRIL); d3.set(Calendar.DAY_OF_MONTH, 12); System.out.println("D3 set to " + d3.getTime()); SimpleDateFormat formatter = new SimpleDateFormat ("E yyyy.MM.dd 'at' hh:mm:ss a zzz"); System.out.println("It is " + formatter.format(dNow)); all the best, vipin
|
 |
mangesh lele
Greenhorn
Joined: Jan 17, 2003
Posts: 18
|
|
thanx very much vipin btw i think that instead of : - System.out.println(new java.util.Date()); it should be : - System.out.println((new java.util.Date()).toString());
|
 |
Rene Larsen
Ranch Hand
Joined: Oct 12, 2001
Posts: 1179
|
|
the 'toString()' method is always automatically called when an object is printed out. Rene
|
Regards, Rene Larsen
Dropbox Invite
|
 |
mangesh lele
Greenhorn
Joined: Jan 17, 2003
Posts: 18
|
|
rene it dint work on my machine with jdk 1.3
|
 |
Rene Larsen
Ranch Hand
Joined: Oct 12, 2001
Posts: 1179
|
|
You can read about the method 'println(Object)' in the JDK 1.3 API PS. follow the links in the API.. Rene
|
 |
Dirk Schreckmann
Sheriff
Joined: Dec 10, 2001
Posts: 7023
|
|
|
mangesh, what did you try to do (exactly)? What error message(s) did you receive?
|
[How To Ask Good Questions] [JavaRanch FAQ Wiki] [JavaRanch Radio]
|
 |
 |
|
|
subject: date and time
|
|
|