Java – Unparseable date

It’s probably because of the default locale on your computer which is not english.

You should use:

new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss", Locale.ENGLISH);

instead.

Leave a Comment