The
format() method of
LocalDateTime class in Java formats this date-time using the specified formatter.
Syntax:
public String format(DateTimeFormatter formatter)
Parameter: This method accepts a parameter
formatter which specifies the formatter to use, not null.
Returns: The function returns the formatted date string and not null.
Below programs illustrate the LocalDateTime.format() method:
Program 1:
Output:
Original LocalDateTime: 2018-11-03T12:45:30
BASIC_ISO_DATE format: 20181103
ISO_LOCAL_DATE format: 2018-11-03
ISO_DATE format: 2018-11-03
ISO_LOCAL_TIME format: 12:45:30
Program 2: