Online Java Compiler By
JavaTpoint.com
import java.util.Date; public class JavaDateToInstantExample1 { public static void main(String[] args) { Date d=new Date(); System.out.println("date in Instant : "+d.toInstant()); } }
Output