Here you can find the source of parseDate(LocalDate date)
public static java.util.Date parseDate(LocalDate date)
//package com.java2s; //License from project: Open Source License import java.time.LocalDate; import java.time.ZoneId; public class Main { public static java.util.Date parseDate(LocalDate date) { if (date != null) { return java.util.Date.from(date.atStartOfDay(ZoneId.systemDefault()).toInstant()); } else {// w ww . j a va2 s. c om return null; } } }