gpt4 book ai didi

java - 为什么 SimpleDateFormat 不会因格式无效而抛出异常?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:13:09 25 4
gpt4 key购买 nike

import java.text.ParseException;

public class Hello {

public static void main(String[] args) throws ParseException {
System.out.println(new java.text.SimpleDateFormat("yyyy-MM-dd").parse("23-06-2015"));
}
}

为什么这会返回 Sun Dec 05 00:00:00 GMT 28 我期待一个异常(exception)。

最佳答案

SimpleDateFormat 的 Javadoc 对重复的模式字母有这样的说法:

Number: For formatting, the number of pattern letters is the minimum number of digits, and shorter numbers are zero-padded to this amount. For parsing, the number of pattern letters is ignored unless it's needed to separate two adjacent fields

(强调我的)

因此对于解析"yyyy-MM-dd" 等同于"y-M-d"

使用此模式,"23-06-2015" 被解析为 year = 23, month = 6, dayOfMonth = 2015

默认情况下,此问题从 0023 年 6 月 1 日开始解决,并向前计算 2015 天,将您带到 0028 年 12 月 5 日。

您可以使用 SimpleDateFormat.setLenient(false) 更改此行为——在禁用宽大处理的情况下,它将为超出范围的数字抛出异常。这已在 Calendar.setLenient()

中正确记录

请注意,对于 Java 8 中的新代码,最好避免使用旧的 DateCalendar 类。如果可以,请使用 LocalDateTime.parse(CharSequence text, DateTimeFormatter formatter)

关于java - 为什么 SimpleDateFormat 不会因格式无效而抛出异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45143802/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com