最佳答案
我试图以字符串的形式返回月份的名称,例如“ May”、“ September”、“ November”。
我试过:
int month = c.get(Calendar.MONTH);
但是,这将返回整数(分别为5、9、11)。如何获得月份名称?