关于android:为什么我不能在java中使用SimpleDateFormat来获得正确的年份?

Why don't I get the year right using SimpleDateFormat in java?

我试图用MySql格式解析数据,我遇到了SimpleDateFormat。我可以得到正确的日期和月份,但今年我得到了一个奇怪的结果:

1
2
3
4
5
6
7
date = 2009-06-22;
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Date d = sdf.parse(date);
System.println(date);
System.println(d.getDate());
System.println(d.getMonth());
System.println(d.getYear());

输出:

1
2
3
4
2009-06-22
22           OK
5            Hum... Ok, months go from 0 to 11
109          o_O WTF ?

我试着把格式改成YYYY-MM-dd(出错了)和yy-MM-dd(什么也没做)。我在Android上编程,不知道它是否重要。

现在,我使用拆分来绕过它,但它很脏,并且阻止我使用i18n功能。


这一年是1900年。这是Date类的一个"特性"。尽量使用Calender


感谢Aaron,正确的版本:

1
2
3
Calendar c = Calendar.getInstance();
c.setTime(sdf.parse(date));
System.println(c.get(Calendar.YEAR));