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

link|improve this question
feedback

2 Answers

See the docs:

If an error occurs, then the index of pos is not changed, the error index of pos is set to the index of the character where the error occurred, and null is returned.

link|improve this answer
` SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy", Locale.US); sdf.setLenient(false); ParsePosition pos = new ParsePosition(0); sdf.parse("22/12/2012", pos); ` this code returns 10 both in index and errorindex – user1221144 Feb 20 at 14:22
feedback

You want to turn lenient parsing off:

sdf.setLenient(false);

See the documentation

link|improve this answer
I want to tell user in which part of date he made a mistake. – user1221144 Feb 20 at 13:53
And replace exception 'Unparseable date: "22/12/2009"' to 'Month number should be within 1 and 12' – user1221144 Feb 20 at 13:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.