gpt4 book ai didi

java - 简单日期格式异常

转载 作者:行者123 更新时间:2023-12-01 23:28:35 26 4
gpt4 key购买 nike

嗨,我正在使用 SimpleDateFormat 来解析和比较字符串中的两个日期。这是我的代码

private static int compareDates(String lineFromFile, String givenDate) throws ParseException, IllegalArgumentException
{
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
Date dateFromfile = sdf.parse(tmp);
Date givenDateTime = sdf.parse(givenDate);
if (dateFromfile.equals(givenDateTime))
{
return 0;
}
if (dateFromfile.before(givenDateTime))
{
return 1;
}

return -1;
}

这是一个主要方法

public static void main(String[] args) {
try
{
int result = compareDates("00:45:44", "09:35:56");
System.out.println(line);
}
catch (ParseException e)

{
e.printStackTrace();
System.out.println("ERROR");
}

}

当我传递有效参数时,这可以正常工作,但是!想要在传递例如“28:40:04”时出现异常,现在只有在作为包含字母的参数字符串传递时才会有异常。

最佳答案

您需要将 lenient 设置为 false (默认行为是 lenient):

sdf.setLenient(false);

参见What is the use of "lenient "?javadoc :

Specify whether or not date/time parsing is to be lenient. With lenient parsing, the parser may use heuristics to interpret inputs that do not precisely match this object's format. With strict parsing, inputs must match this object's format.

关于java - 简单日期格式异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19658137/

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