我试图通过将月份 int 传递给函数来获得一个简短的月份名称。但它总是返回'Jan'
这是功能:
public static String getMonthName_Abbr(int month) {
Calendar cal = Calendar.getInstance();
cal.set(Calendar.MONTH, month);
SimpleDateFormat month_date = new SimpleDateFormat("MMM");
String month_name = month_date.format(month);
return month_name;
}