公历月份

发布于 2024-08-04 09:58:20 字数 343 浏览 3 评论 0原文

GregorianCalendar startDate = new GregorianCalendar(2009, Calendar.JANUARY, 1);
SimpleDateFormat sdf = new SimpleDateFormat("d/m/yyyy"); 
public void setStart()
{
    startDate.setLenient(false);
    System.out.println(sdf.format(startDate.getTime()));
}

当我运行此代码时,我得到 1/0/2009。当我改变月份时,我也会得到同样的结果。它有什么问题以及如何修复它?

GregorianCalendar startDate = new GregorianCalendar(2009, Calendar.JANUARY, 1);
SimpleDateFormat sdf = new SimpleDateFormat("d/m/yyyy"); 
public void setStart()
{
    startDate.setLenient(false);
    System.out.println(sdf.format(startDate.getTime()));
}

When I run this code, I get 1/0/2009. I also get the same thing when I change the months. What is wrong with it and how can I fix it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

欢你一世 2024-08-11 09:58:20

小写“m”代表小时中的分钟。您应该使用大写“M”。

SimpleDateFormat sdf = new SimpleDateFormat("d/M/yyyy"); 

请参阅 SimpleDateFormat JavaDoc 了解更多详细信息。

The lowercase 'm' is for minute in hour. You should use the uppercase 'M' instead.

SimpleDateFormat sdf = new SimpleDateFormat("d/M/yyyy"); 

See the SimpleDateFormat JavaDoc for more details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文