//this month
SimpleDateFormat df_formonth = new SimpleDateFormat("MMM");
c.set(Calendar.MONTH, 5); //integer to be changed upon click - maybe month counter from now
String currmonth = df_formonth.format(c.getTime());
这应该会返回六月,因为我们将月份从 0 索引到 11
但它会在七月回归
任何解决方案或其他方法来解决这个问题?