How to convert the date Tue Nov 13 14:35:04 +0000 2012 String format to date in Java?
I know of Date.parse(String) but I don't know which format I should use for the date. Do I have to modify the string so that it can be parsed into date, and if yes then how?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|||
|
|
|
Use
You should explicitly use Also, don't forget that the |
|||||
|
FULLmy source. any way, what have you tried? – elyashiv Nov 22 '12 at 16:04Date.parse(String)suggests usingSimpleDateFormat, as in the answer below. – andrewdotn Nov 22 '12 at 16:13