Assume currently date is 28th of May. If i call the following commands in order the output becomes
cal.add(Calendar.DATE, 1); // Day = 29
cal.add(Calendar.DATE, 1); // Day = 30
cal.add(Calendar.DATE, 1); // Day = 31
cal.add(Calendar.DATE, 1); // Day = 31
cal.add(Calendar.DATE, -1); // Day = 29
Why this is not jumping into the next month. And why It stuck at 31st. (but really when you minus one it jumps to 29.