I want to parse the date into a desired format but i am receiving an exception every time. i know it is easy to implement but i am facing some problem don\'t know where exac
You have no time part in your string: and the Month has only two character replace
new SimpleDateFormat("yyyy-MMM-dd HH:mm:ss",Locale.ENGLISH);
with
new SimpleDateFormat("yyyy-MM-dd",Locale.ENGLISH);