Check out example codes for "localdate to string java". It will help you in understanding the concepts better.
Code Example 1
LocalDate today = LocalDate.now();
String formattedDate = today.format(DateTimeFormatter.ofPattern("dd-MMM-yy"));
System.out.println(formattedDate);
Code Example 2
LocalDate today = LocalDate.now();
System.out.println(today.toString());
Learn ReactJs, React Native from akashmittal.com