Here you can find the source of getLocalDateFromUtilDate(Date input)
public static LocalDate getLocalDateFromUtilDate(Date input)
//package com.java2s; //License from project: Open Source License import java.sql.Date; import java.time.LocalDate; public class Main { public static LocalDate getLocalDateFromUtilDate(Date input) { return input.toLocalDate(); }/*from ww w. j av a 2s. co m*/ }