我正在eclipse for Android中使用java Date Class,因为很快就会弃用getYear并将其替换为getFullYear但是Class没有getFullYear函数......我需要做些什么才能得到它?
答案 0 :(得分:2)
使用
Calender statcal = Calender.getInstance(Locale locale)
然后访问字段statcal.get(Calendar.YEAR)
。应该这样做。
答案 1 :(得分:1)
如果您只是想将结果用于显示目的,我建议在android中使用android.text.format.DateFormat类。
http://developer.android.com/reference/android/text/format/DateFormat.html
你可以简单地做
DateFormat.format("yyyy", dateObject);
dateObject可以是Calendar
,Date
或timeInMillis