SimpleDateFormat解析错误位置
如果用户输入的日期超出范围(例如月份= 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您想要关闭宽松的解析:
请参阅 文档
You want to turn lenient parsing off:
See the documentation
请参阅 文档:
See the docs: