为什么我不能在Java中使用SimpleDateFormat一年?
我试图解析MySql
格式的数据,我碰到了SimpleDateFormat
。 我可以得到适当的一天和一个月,但是我在这一年得到了一个奇怪的结果:
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());
产出:
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上编程,不知道它是否重要。
现在,我绕过了使用拆分,但它很脏,并阻止我使用国际化的功能。
这一年相对于1900年。这是Date
类的“特征”。 尝试使用Calender
。
感谢Aaron,正确的版本:
Calendar c = Calendar.getInstance();
c.setTime(sdf.parse(date));
System.println(c.get(Calendar.YEAR));
链接地址: http://www.djcxy.com/p/6235.html
上一篇: Why don't I get the year right using SimpleDateFormat in java?