I am using SimpleDateFormat class in JAVA to convert string value to date format. Below is the code
try{
SimpleDateFormat format = new SimpleDateFormat(pattern);
Date newDate = format.parse(value);
if(newDate != null)
return newDate;
else
return null;
}
My input is convertToDate("12-13-2011","dd-MM-yyyy") my output is Thu Jan 12 00:00:00 IST 2012 Why it is not throwing an error instead it takes next year and month as JAN.
Thanks PradeepKumar