Date validation is not working properly. If day = 90, month = 1 and year = 1990 The validation does not work. It switches the date to march, with no validation. How can I validate it?
DateFormat formatter = new SimpleDateFormat("dd/MM/yyyy");
Date date;
try {
date = formatter.parse(day + "/" + month + "/" + year);
} catch (ParseException e) {
error = Boolean.TRUE;
errorMessage = "Invalid date";
return null;
}