publicclassInstantExample{publicstaticvoidmain(String[] args){DateTimeFormatter dtfDateTime =DateTimeFormatter.ofPattern("uuuu/MM/dd HH:mm:ss");// seconds passed since the Unix epoch time (midnight of January 1, 1970 UTC)Instant now =Instant.now();// convert Instant to LocalDateTimeLocalDateTime localDateTime =LocalDateTime.ofInstant(now,ZoneId.systemDefault());System.out.println(dtfDateTime.format(localDateTime));// 2022/06/03 13:23:24