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
You need to change the lines that look like:
setup.add(day, -1); setup.add(day, -10);
to
setup.add(GregorianCalendar.DAY_OF_MONTH, -1); setup.add(GregorianCalendar.DAY_OF_MONTH, -10);
See GregorianCalendar for more information.