Java examples for java.time:Timezone
convert LocalDate To Date as default time zone
//package com.java2s; import java.time.LocalDate; import java.time.ZoneId; import java.util.Date; public class Main { public static Date convertToDate(LocalDate localDate) { Date date = Date.from(localDate .atStartOfDay(ZoneId.systemDefault()).toInstant()); return date; }/*from w w w. ja v a 2s .co m*/ }