I want to add days to a date to get a new date in Java. How to achieve it using the Calendar
class.
Calendar dom = new GregorianCalendar(d, m, y);
is the instance of my date of manufacture and I want to reach to date of expiry adding some 100 days to the current date and store it in a variable doe
but unable to do that.