I need to format a date(yyyyMMDD) into YYYY-MM-DD. Can I create a date format of the latter ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
Gives the output |
||||
|
Yes. Use SimpleDateFormat. |
|||
|
|
|
You can use a pre-written class like the pojava http://www.pojava.org/ for this. It's very good a recognising different date formats and translating between them. For example, to translate between the formats above:
I find that using this class helps as I don't have to worry too much about the different date formats that exist out there (except between UK/US dd/MM/yyyy & MM/dd/yyyy, which you can specifically configure the class for) |
|||
|
|
|
Have a look at joda-time: http://joda-time.sourceforge.net/ |
|||
|
|
YYYYis an invalid format and thatDDstands for "day in year" not "day in month" as you seem to initially expect (which would then bedd). – BalusC Oct 12 '10 at 14:47