I\'m working with a date in this format: yyyy-mm-dd.
yyyy-mm-dd
How can I increment this date by one day?
In Java 8 simple way to do is:
Date.from(Instant.now().plusSeconds(SECONDS_PER_DAY))