Here you can find the source of getInstant(LocalDate localDate)
public static Instant getInstant(LocalDate localDate)
//package com.java2s; //License from project: Apache License import java.time.Instant; import java.time.LocalDate; import java.time.ZoneId; public class Main { private static final ZoneId DEFAULT_ZONE_ID = ZoneId.of("Asia/Singapore"); public static Instant getInstant(LocalDate localDate) { return localDate.atStartOfDay().atZone(DEFAULT_ZONE_ID).toInstant(); }/*from www. j a v a2 s . co m*/ }