gpt4 book ai didi

java - SimpleDateFormat 不识别月份

转载 作者:搜寻专家 更新时间:2023-10-31 08:12:48 24 4
gpt4 key购买 nike

我想解析一个日期字符串,但失败得很惨。为了说明我的问题,我编写了这个简单的 JUnit 测试:

@Test
public void testParseJavaDate() throws ParseException {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-DD_HH-mm-ss", Locale.GERMAN);

String inputtime = "2011-04-21_16-01-08";
Date parse = sdf.parse(inputtime);

assertEquals(inputtime,sdf.format(parse));
}

此测试失败并显示此消息:

org.junit.ComparisonFailure: expected:<2011-0[4]-21_16-01-08> but was:<2011-0[1]-21_16-01-08>

我不明白为什么格式化程序不能正确解析日期。你有什么想法吗?

最佳答案

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd_HH-mm-ss", Locale.GERMAN);

String inputtime = "2011-04-21_16-01-08";
Date parse = sdf.parse(inputtime);

使用 dd 而不是 DD。

关于java - SimpleDateFormat 不识别月份,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5992331/

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