| Author |
Date format problem
|
sreedhar Lackka
Ranch Hand
Joined: Jul 05, 2008
Posts: 154
|
|
Hi All, Thanks a lot in advance. I want to print date in some predefined format without using SimpleDateFormat class. Is it possible to complete in otherway. Regards, Sree
|
 |
Rene Larsen
Ranch Hand
Joined: Oct 12, 2001
Posts: 1179
|
|
|
You can always do your own Date conversion coding - but I don't recoment it.
|
Regards, Rene Larsen
Dropbox Invite
|
 |
Joanne Neal
Rancher
Joined: Aug 05, 2005
Posts: 3011
|
|
|
It will help us to avoid making unsuitable suggestions if you tell us why you don't want to use SimpleDateFormat.
|
Joanne
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19230
|
|
|
The only reason I can imagine is an environment that does not have (Simple)DateFormat, like Java ME.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
Vinod K Singh
Ranch Hand
Joined: Sep 30, 2008
Posts: 198
|
|
|
Of course why not. Just read the desired date fragments (hour, day, month etc.) and place them in appropriate order using String concatenation.
|
My Blog
|
 |
 |
|
|
subject: Date format problem
|
|
|