Hello I want to add 3 days to the current day. I have seen some ways but they are using a different format. I have this:
DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyy/MM/dd");
LocalDate localDate = LocalDate.now();
String date =DateTimeFormatter.ofPattern("yyyy/MM/dd").format(localDate);
How can i add 3 days to that?
PD: take in account that i will use these dates to do a select from a database