Here you can find the source of formateDate(LocalDate date, String formatStr)
public static String formateDate(LocalDate date, String formatStr)
//package com.java2s; import java.time.*; import java.time.format.DateTimeFormatter; public class Main { public static String formateDate(LocalDate date, String formatStr) { return date.format(DateTimeFormatter.ofPattern(formatStr)); }//from w ww . ja v a 2s.c om }