Java日历日期错误 [英] Java Calendar date error

查看:183
本文介绍了Java日历日期错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

任何人都可以帮助我理解为什么我得到不同的月份值

  SimpleDateFormat dateFormat = new SimpleDateFormat(dd / MM / yyyy); 
System.out.println(dateFormat.format(cal.getTime())
+ -
+ cal.get(Calendar.MONTH));

令人惊讶的显示

 code> 09/09 / 2012--8 


解决方案

日历 类别, MONTH 从索引 0 开始。因此,一月为0,二月为1,因此九月

日历类中,因此建议您查看 Joda-Time API ,使您在使用日期时间数据时更加轻松。


Can anyone please help me understand why I am getting different month values for

SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");    
System.out.println(dateFormat.format(cal.getTime()) 
                   + "--" 
                   + cal.get(Calendar.MONTH));

Surprisingly displays

09/09/2012--8

解决方案

In Calendar class, MONTH start from index 0. So, January is 0, February is 1, and hence September is 8.

P.S.: - That's true that this is an Inconsistency in Calendar class, so I would suggest you to take a look at Joda-Time API to make your life easier while working with date-time data.

这篇关于Java日历日期错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆