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