How to add ten days to current date using java? Is net beans or ecllipse which is suitable for a project?
I didn't know how to add ten days to current date and to give the date after ten days
I didn't know how to add ten days to current date and to give the date after ten days
Administrator • Oct 4, 2018
I think Java has a Calendar class which you can use to add dates to any date. Here's the official documentation: <a href="https://docs.oracle.com/javase/1.5.0/docs/api/java/util/Calendar.html" target="_blank" rel="noopener noreferrer">Calendar (Java 2 Platform SE 5.0)</a>
Date dt = new Date(); Calendar c = Calendar.getInstance(); c.setTime(dt); c.add(Calendar.DATE, 1); dt = c.getTime();in Java 8, you may do something like -
LocalDateTime.from(dt.toInstant()).plusDays(1);Replace "1" with the number of days you wish to add. I'm not a Java expert. I think #-Link-Snipped-# might help. He knows Java stuff.Â