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