I\'m new to this site and I have just started learning Java. I\'m trying to add couple days to the GregorianCalendar but it doesn\'t work. Here... (Ignore the top chunk), it
Calendar c = new GregorianCalendar(2000, Calendar.JANUARY, 1); c.add(Calendar.DAY_OF_MONTH, 1);
More info on Calendar and its fields can be found here Calendar
Also try to look at this past post: here