我想从日历中获取当前月份。
我用了两种方法:第一:
int gcmonth = Calendar.getInstance().get(Calendar.MONTH);
第二:
Calendar c = (Calendar)Calendar.getInstance();
int gcmonth = c.get(Calendar.MONTH);
两种方式都返回 2(三月),但我想得到 8(九月 - 本月)。
编辑:我手机上的日期是对的!2013年9月12日23:32(基辅时间)