I have this date format that i would like to generate using the Calendar class in Java
Date : Thu, 04 Jun 2009 02:51:59 GMT
What's the best way to generate it ?
Thanks in advance
I have this date format that i would like to generate using the Calendar class in Java
Date : Thu, 04 Jun 2009 02:51:59 GMT
What's the best way to generate it ?
Thanks in advance
Use the SimpleDateFormat
class. Calendar
doesn't format dates.