I\'m working with a date in this format: yyyy-mm-dd.
yyyy-mm-dd
How can I increment this date by one day?
Take a look at Joda-Time (https://www.joda.org/joda-time/).
DateTimeFormatter parser = ISODateTimeFormat.date(); DateTime date = parser.parseDateTime(dateString); String nextDay = parser.print(date.plusDays(1));