Am having problem in using simple date format for this: having date as
12/13/2011 12:00:00 AM
For that am using:
SimpleDateFormat form = new SimpleDateFormat("dd/MMMM/yyyy HH:mm:ss");
but throwing an exception while coversion saying:
java.text.ParseException: Unparseable date: 12/13/2011 12:00:00 AM
how to fix this?
Thanks