I'd like to notificate user if he entered date out of range(for example month = 22). But dateFormat stores in global settings file, so I don't know the exactly position of month field in input string. I've tried to use getErrorOffset() method of ParseException, but it always returns end position (10) of the input string
SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
sdf.setLenient(false);
try
{
sdf.parse("22/12/2009");
}
catch (ParseException ex)
{
ex.getErrorOffset();
}
Is there any solution? thx