CrazyEngineers
  • How to add ten days to current date using java? Is net beans or ecllipse which is suitable for a project?

    Updated: Oct 26, 2024
    Views: 1.4K

    I didn't  know how to add ten days to current date and to give the date after ten days

    0
    Replies
Howdy guest!
Dear guest, you must be logged-in to participate on CrazyEngineers. We would love to have you as a member of our community. Consider creating an account or login.
Replies
  • Kaustubh Katdare

    AdministratorOct 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. 

    Are you sure? This action cannot be undone.
    Cancel
Home Channels Search Login Register