公历月份
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
小写“m”代表小时中的分钟。您应该使用大写“M”。
请参阅
SimpleDateFormat
JavaDoc 了解更多详细信息。The lowercase 'm' is for minute in hour. You should use the uppercase 'M' instead.
See the
SimpleDateFormat
JavaDoc for more details.