SimpleDateFormat解析错误位置

发布于 2025-01-07 11:13:19 字数 408 浏览 0 评论 0原文

如果用户输入的日期超出范围(例如月份= 22),我想通知他。但 dateFormat 存储在全局设置文件中,所以我不知道输入字符串中月份字段的确切位置。我尝试使用 ParseException 的 getErrorOffset() 方法,但它总是返回输入字符串的结束位置 (10)

    SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
    sdf.setLenient(false);
    try
    {
        sdf.parse("22/12/2009");
    }
    catch (ParseException ex)
    {
        ex.getErrorOffset();
    }

有什么解决方案吗? 谢谢

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

表情可笑 2025-01-14 11:13:19

您想要关闭宽松的解析:

sdf.setLenient(false);

请参阅 文档

You want to turn lenient parsing off:

sdf.setLenient(false);

See the documentation

八巷 2025-01-14 11:13:19

请参阅 文档

如果发生错误,则不改变pos的索引,将pos的错误索引设置为发生错误的字符的索引,并返回null。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文