Date format conversion error [duplicate]

Try using SimpleDateFormatter. You have to tell it the input/output format, you can do that based on this description (you can also find a few common examples there).

The code will be something like this:

try {
    String input = "Thu Sep 05 12:07:46 IST 2013";
    DateFormat formatter = new SimpleDateFormat("I leave this to you :-)))");
    System.out.println(formatter.parse(input));
} catch (ParseException e) {
    e.printStackTrace();
}

Hope that helps.

Leave a Comment