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.

This is due to different jdk versions on android.

  String string = "Tue Oct 16 00:00:55 IST 2012";
  Date date = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy").parse(string);

and also tried

String string = "Tue Oct 16 00:00:55 IST 2012";
Date date = new SimpleDateFormat("EEE MMM dd HH:mm:ss 'UTC' yyyy").parse(string);

adding Locale in SimpleDateFormat constructor has no effect.

I have searched and got this but can't find any workaround.

Is there any workaround for this?

share|improve this question
2  
What do you mean by fails ? Some output / stack trace would be nice. – Deepak Bala Oct 17 '12 at 6:23
Can you specify the error you are getting? – Pratik Oct 19 '12 at 6:02
I was getting unparsable date exception. – Sunny Oct 19 '12 at 14:58
have the same issue – barbarian Oct 24 '12 at 20:44
My problem fixed solution from this question stackoverflow.com/questions/6299837/… – barbarian Oct 24 '12 at 21:09

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.