本文介绍了Java:如何严格分析日期?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是一种非常实用的解析器,可以滚动生成的日期而不是抛出错误。如何严格地解析日期没有regexps等?
fmt = new SimpleDateFormat(dd.MM.yyyy)
pre>
fmt.parse(10.11.2012)//它的工作原理
fmt.parse(10.1150.2012)//它的工作原理是不需要的
解决方案是您要查找的内容。
SimpleDateFormat is a very kind parser that rolls the resulting date instead of throwing an error. How can I parse a date strictly without regexps etc?
fmt = new SimpleDateFormat("dd.MM.yyyy") fmt.parse("10.11.2012") // it works fmt.parse("10.1150.2012") // it works but it's unwanted
解决方案
fmt.setLenient(false);
is what you're looking for.这篇关于Java:如何严格分析日期?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!