Here you can find the source of toDate(Instant instant)
public static Date toDate(Instant instant)
//package com.java2s; //License from project: Apache License import java.time.Instant; import java.util.Date; public class Main { public static Date toDate(Instant instant) { return new Date(instant.toEpochMilli()); }/*from w w w. j av a2 s. c om*/ }