gpt4 book ai didi

java - SimpleDateFormat.parse 未检测到不正确的日期

转载 作者:太空宇宙 更新时间:2023-11-04 10:42:37 24 4
gpt4 key购买 nike

一直在尝试使用 SimpleDateFormat。我不明白一件事:为什么以下返回 ok

String pattern = "MM/dd/yyyy";
SimpleDateFormat format = new SimpleDateFormat(pattern);

String input = "2023/03/22";
Date d = null;

try {
d = format.parse(input);
} catch (ParseException e) {
System.out.println("nok");
}

System.out.println("ok");

返回的日期也很荒谬:Fri Jul 03 00:00:00 CET 190

非常感谢任何解释!

最佳答案

让我们为那些想要答案的读者详细说明一下:

format.setLenient(false) 就是您所需要的。

您可以这样做。我同意 AxelH 的观点:你应该使用 JDK8、java.time 包和 LocalTime:

import org.junit.Test;

import java.text.ParseException;
import java.text.SimpleDateFormat;

public class DateFormatTest {

@Test(expected = ParseException.class)
public void testSetLenient_IncorrectDateInput() throws ParseException {
// setup
String input = "2023/03/22";
String pattern = "MM/dd/yyyy";
DateFormat format = new SimpleDateFormat(pattern);
format.setLenient(false);
// exercise and assert
format.parse(input);
}
}

关于java - SimpleDateFormat.parse 未检测到不正确的日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48787453/

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