Here you can find the source of toDate(LocalDateTime dateTime)
static Date toDate(LocalDateTime dateTime)
//package com.java2s; //License from project: Apache License import java.time.LocalDateTime; import java.time.ZoneOffset; import java.util.Date; public class Main { static Date toDate(LocalDateTime dateTime) { return Date.from(dateTime.toInstant(ZoneOffset.UTC)); }//from w w w . j a va 2 s .c o m }