You are on page 1of 4

Date & Time

ETL LABS PVT LTD – JAVA PROGRAMMING 128


Display Current Date
To display the current date, import the 3
java.time.LocalDate class, and use its
now() method:

ETL LABS PVT LTD – JAVA PROGRAMMING 129


Display Current Time
To display the current time (hour, minute,
4 second, and microsecond), import the
java.time.LocalTime class, and use its
now() method:

ETL LABS PVT LTD – JAVA PROGRAMMING 130


Display Current Date and Time
To display the current date and time, import
the java.time.LocalDateTime class, and use 3
its now() method:

ETL LABS PVT LTD – JAVA PROGRAMMING 131

You might also like