我正在尝试使用 SimpleDateFormat 将我的月份转换为 MMM 格式,但我无法转换它。
tvDisplayDate = (TextView) findViewById(R.id.dateDisplay);
Calendar cal=Calendar.getInstance();
SimpleDateFormat format = new SimpleDateFormat("MMM");
int tempyear = cal.get(Calendar.YEAR);
int tempmonth = cal.get(Calendar.MONTH);
int tempday = cal.get(Calendar.DAY_OF_MONTH);
String month = new Integer(tempmonth).toString();