Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to parse string representation of date. It looks like 20120306 14:21:35 MSK +0400. I'm using a SimpleDateFormat to parse it into a Date and a pattern string according to http://developer.android.com/reference/java/text/SimpleDateFormat.html

DATE_PATTERN = "yyyyMMdd kk:mm:ss z Z";
SimpleDateFormat dateFormat=new SimpleDateFormat(DATE_PATTERN);
Date date=dateFormat.parse(dateString);

I've try different z/Z combinations but have no result, except ParseException of course :)

Probably i'm doing something wrong, but what?

I'll be very glad for any help! Thanks in advance!

share|improve this question

1 Answer

up vote 2 down vote accepted

It doesn't recognise "MSK" as a valid time zone so try this instead:

String DATE_PATTERN = "yyyyMMdd kk:mm:ss z Z";
SimpleDateFormat dateFormat = new SimpleDateFormat(DATE_PATTERN);
Date date = dateFormat.parse(dateString.replaceAll("MSK", "GMT"));
share|improve this answer
Thanks! It really works! I've spend 3 hours with that shit... :( – Vyacheslav Mar 6 '12 at 12:52
meta.stackoverflow.com/a/5235/172216 :) – Caner Mar 6 '12 at 12:54
1  
Thanks! it's my first question at SO, I'll keep it in mind! – Vyacheslav Mar 6 '12 at 13:13

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.