SimpleDateFormat 在解析“YYYY-MM-dd HH:mm”时产生不正确的日期和时间
尝试转换以下字符串表示形式时使用 SimpleDateFormat 将格式为“YYYY-MM-dd HH:mm”的日期和时间转换为 Date 对象,可能会得到不正确的结果。如下所示,代码产生意外输出:
<code class="java">Date newDate = null; String dateTime = "2013-03-18 08:30"; SimpleDateFormat df = new SimpleDateFormat("YYYY-MM-dd HH:mm", Locale.ENGLISH); df.setLenient(false); try { newDate = df.parse(dateTime); } catch (ParseException e) { throw new InvalidInputException("Invalid date input."); }</code>
预期输出应为“Thu Mar 18 08:30:00 EST 2013”,但代码错误地产生“Sun Dec 30 08:30” :00 EST 2012"。
问题的原因在于 SimpleDateFormat 构造函数中输入错误的 YYYY 模式。指定日期和时间格式的正确模式是 yyyy,小写 y 代表年份。
要解决此问题,请修改 SimpleDateFormat 模式,如下所示:
<code class="java">SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm", Locale.ENGLISH);</code>
通过更新模式,SimpleDateFormat 对象现在将正确解析日期和时间字符串,从而产生所需的输出“Thu Mar 18 08:30:00 EST 2013”。
需要注意的是,虽然 Lenient 在此关闭代码,一般不建议关闭。在大多数情况下,最好优雅地处理解析错误,而不是可能解析错误的数据。
以上是为什么 SimpleDateFormat 在解析'YYYY-MM-dd HH:mm”时会产生错误的日期和时间?的详细内容。更多信息请关注PHP中文网其他相关文章!