Looking for some help with LocalDate, I have so far come up with this:
public static String getDate(int days) {
LocalDate localDate = LocalDate.of(2017, 03, 04).plusDays(days);
return localDate.toString():
}
I need to return it as a string, but in this format: dd/mm/yyyy = 29/04/1991.
How can I achieve this?