Here you can find the source of toDate(LocalDate date)
public static Date toDate(LocalDate date)
//package com.java2s; //License from project: Apache License import java.time.*; import java.util.*; public class Main { public static Date toDate(LocalDate date) { return date != null ? Date.from(date.atStartOfDay().atZone(ZoneId.systemDefault()).toInstant()) : null; }//from w ww. j a v a 2 s. co m }