Here you can find the source of toDate(LocalDate finalProjectDate, ZoneId zone)
public static Date toDate(LocalDate finalProjectDate, ZoneId zone)
//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 toDate(LocalDate finalProjectDate, ZoneId zone) { return Date.from(finalProjectDate.atStartOfDay().atZone(zone).toInstant()); }// ww w. j av a2 s . c o m }