| Author |
Regarding java.util.Date
|
yekkala krishna
Ranch Hand
Joined: Mar 04, 2007
Posts: 105
|
|
Hi, I need to print the date in the below format : DD/MM/YYYY T HH:MM:SS But i am getting exception when i use in the above format because of the character " T ".May i know any suggestion to print the date in the above format. I am using SimpleDateFormat class to print the Date. I am waiting for your valuable suggestions. With Regards, Rama krishna.Y
|
 |
Duc Vo
Ranch Hand
Joined: Nov 20, 2008
Posts: 254
|
|
Just put single quote around the letter T or any other custom string that you need in the formatted string. In your case, it should be something like "dd/MM/yyyy'T'hh:mm:ss" [ November 23, 2008: Message edited by: Duc Vo ]
|
“Everything should be as simple as it is, but not simpler.” Albert Einstein
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32708
|
|
|
It might be easier to use the %T tags; they are listed in Formatter.
|
 |
 |
|
|
subject: Regarding java.util.Date
|
|
|