Are there any ways to convert "Wed, 30 Nov 2011 09:13:00" to a timestamp besides programatically coding it yourself? Like any libraries/functions that can help accomplish this?
thanks
|
Are there any ways to convert "Wed, 30 Nov 2011 09:13:00" to a timestamp besides programatically coding it yourself? Like any libraries/functions that can help accomplish this? thanks |
|||
|
|
|
SimpleDateFormat is your friend in this case Remember that Date.getTime() returns miliseconds since the beginning of unix time. |
|||
|
|
|
Something like: String dateStr = "Wed, 30 Nov 2011 09:13:00"; DateFormat formatter = new SimpleDateFormat("EEE, d MMMMM yyyy HH:mm:ss"); formatter.parse(dateStr); |
|||
|
|