I have a date string in the following format:

Thu Oct 20 14:39:19 PST 2011

I would like to parse it using DateFormat to get a Date object. I'm trying it like this:

DateFormat df = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.SHORT);
Date date = df.parse(dateString);

This gives a ParseException ("unparseable date").

I've also tried this:

SimpleDateFormat df = new SimpleDateFormat("EEE-MMM-dd HH:mm:ss z yyyy");

with the same results.

Is that the right SimpleDateFormat string? Is there a better way to parse this date?

link|improve this question

feedback

3 Answers

Are you sure that date string is really being assigned the value Thu Oct 20 14:39:19 PST 2011? If that's not the problem, you could try using this code which works for me:

import java.text.SimpleDateFormat;
import java.util.Date;
public class Test{


  public static void main(String args[]){

    String toParse = "Thu Oct 20 14:39:19 PST 2011";

    String format = "EEE MMM dd HH:mm:ss z yyyy";
    SimpleDateFormat formater = new SimpleDateFormat(format);
    try{
      Date parsed = formater.parse(toParse);
    } catch(Exception e){
      System.out.println(e.getMessage());
    }

  }
}
link|improve this answer
Yes, I tried hard-coding it in my code and get the same result. – howettl Oct 20 '11 at 22:03
Can you post the code that worked successfully for you? – howettl Oct 20 '11 at 22:13
I don't know what to say. Copying and pasting your code gives me an Unparseable date exception. – howettl Oct 20 '11 at 22:21
Try cleaning your build and then recompiling. – Kurtis Nusbaum Oct 20 '11 at 22:21
I did that and no change. – howettl Oct 20 '11 at 22:24
show 7 more comments
feedback

Try this:

SimpleDateFormat df = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy");
link|improve this answer
No luck unfortunately. – howettl Oct 20 '11 at 21:56
Really? Because I tried this and it worked for me. – Kurtis Nusbaum Oct 20 '11 at 21:59
I hard coded the date string instead of taking it from the database, and did a parse on the hard-coded string. This resulted in an unparseable date exception. – howettl Oct 20 '11 at 22:01
feedback
up vote 0 down vote accepted

The issue was that I was trying to parse an English date while in the French locale.

This was resolved by using this instead:

SimpleDateFormat df = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy", Locale.CANADA);

link|improve this answer
Oh wow. That's a real gotchya. – Kurtis Nusbaum Oct 20 '11 at 23:48
feedback

Your Answer

 
or
required, but never shown

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