Here you can find the source of toDateString(LocalDate date, String pattern)
public static String toDateString(LocalDate date, String pattern)
//package com.java2s; //License from project: Open Source License import java.time.LocalDate; import java.time.format.DateTimeFormatter; public class Main { public static String toDateString(LocalDate date, String pattern) { return DateTimeFormatter.ofPattern(pattern).format(date); }/* w w w .j a v a2s .co m*/ }