gpt4 book ai didi

java - 为什么用日历设置日期给我错误的日期

转载 作者:行者123 更新时间:2023-11-29 09:41:22 25 4
gpt4 key购买 nike

我将日期设置为 2013-01-01 00:00:00,但日期显示为 Fri Feb 01 00:00:00 GMT+01:00 2013

为什么?

Calendar calendar = Calendar.getInstance();
calendar.set(2013, 1, 1, 0, 0, 0);
Date startDate = calendar.getTime();

最佳答案

在 Java 的日期类中,月份编号从 0 开始。在 Calendar 中使用月份常量类以避免这种常见错误。

calendar.set(2013, Calendar.JANUARY, 1, 0, 0, 0);

关于java - 为什么用日历设置日期给我错误的日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14383927/

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