Код: Выделить всё
Calendar cal = Calendar.getInstance();
cal.set(Calendar.YEAR, 2012);
cal.set(Calendar.MONTH, 0);
cal.set(Calendar.DAY_OF_MONTH, 31);
Код: Выделить всё
cal.add(Calendar.DAY_OF_MONTH, 1);
Код: Выделить всё
cal.add(Calendar.DAY_OF_YEAR, 1);
Подробнее здесь: https://stackoverflow.com/questions/140 ... calendar-o