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 am trying to parse the following string to date

2013-02-01T09:37:20EST

I need to compare it with current date to see it is before or after current date.

Here is what I am doing

Date formatTime(String time) throws exception
 {
 String format = "yyyy-MM-dd HH:mm:ss z";
 DateFormat dateFormat = new SimpleDateFormat(format);
 Date expTime = dateFormat.parse(time);
 return expTime;
 }

I am getting java.text.ParseException: Unparseable date: "2013-02-01T09:37:20EST" (at offset 10)

Thanks.

share|improve this question
Doesn't it seem odd that your input string has a literal "T" and no spaces while your format string has no literal "T" and spaces? – maerics Feb 1 at 15:55
Yes. It does seems odd and that why I am reaching out to the developer community to help me understand what it means and what should I do about it. – user1935235 Feb 1 at 16:01
Thanks to those who have actually answered. – user1935235 Feb 1 at 16:01

3 Answers

up vote 0 down vote accepted

notice the space before the timezone z and wrap T around quotes 'T'

String format = "yyyy-MM-dd'T'HH:mm:ss z";
share|improve this answer

The format should be like this: yyyy-MM-dd'T'HH:mm:ssZ

share|improve this answer

Your input time String does not match your DateFormat pattern. You could use:

String format = "yyyy-MM-dd'T'HH:mm:ssz";

SimpleDateFormat

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.