LocalDate today = LocalDate.now(); LocalDate tomorrow = today.plusDays(1); // In string format LocalDate today = LocalDate.now(); String tomorrow = (today.plusDays(1)).format(DateTimeFormatter.ISO_DATE);