Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a String of a date and time like this: 2011-04-15T20:08:18Z. I don't know much about date/time formats, but I think, and correct me if I'm wrong, that's its UTC format.

My question: what's the easiest way to parse this to a more normal format, in Java?

share|improve this question
1  
UTC is not a format, it's a timezone. It affects the value of the time, not the string representation. – Adrian Petrescu Jul 1 '11 at 3:09
The Z at the end (of an ISO-8601 date) means it's UTC... @Adrian is right that it's not a format. – artbristol Jul 1 '11 at 8:23

2 Answers

up vote 2 down vote accepted

What you have is an ISO-8601 date format which means you can just use SimpleDateFormat...

DateFormat m_ISO8601Local = new SimpleDateFormat ("yyyy-MM-dd'T'HH:mm:ssZ");

And then you can just use SimpleDateFormat.parse(). Also, here is a blog post with some examples that might help.

share|improve this answer
doesn't the timezone have to be specified in the format? – aldrin Jul 1 '11 at 3:17
@aldrin: thanks, corrected – Andrew White Jul 1 '11 at 11:37
Does this work for anyone else? In my case, it fails to parse. – loeschg Jan 30 at 21:38
@losechg: You can open a new question and reference this answer if you have a new issue. – Andrew White Jan 31 at 2:27

You have to give the following format including the time zone.

new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ")
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.