java SimpleDateFormat 模式与参数不同
SimpleDateFormat 模式为“yyyyMM”,arg 为 yyyy-MM,但没有异常且结果错误。为什么?谢谢~~
SimpleDateFormat format = new SimpleDateFormat("yyyyMM");
System.out.println(format.format(format.parse("2011-07")));
结果是201105
SimpleDateFormat pattern is "yyyyMM", and the arg is yyyy-MM, but there are no exception and a wrong result. why? thx~~
SimpleDateFormat format = new SimpleDateFormat("yyyyMM");
System.out.println(format.format(format.parse("2011-07")));
the result is 201105
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用setLenient(false);然后它会抛出您期望的异常。
请参阅 setLenient()文档。
Use
setLenient(false)
; it will then throw the exception you expect.See the setLenient() docs.
parse
输入错误,尝试System.out.println(format.format(format.parse("201107")));
对于 2011-07,它将该月解释为负 7 个月,结果为 201005 (12-7=5)。
The input to
parse
is wrong, trySystem.out.println(format.format(format.parse("201107")));
With 2011-07 it interprets the month as negative 7 months which results 201005 (12-7=5).