Saturday, October 25, 2025
HomeLanguagesJavaLocalTime format() method in Java with Examples

LocalTime format() method in Java with Examples

The format() method of a LocalTime class is used to format this time using the specified formatter passed as a parameter. This method formats this time based on passed formatter to a string.

Syntax:

public String format(DateTimeFormatter formatter)

Parameters: This method accepts a single parameter formatter which is the specified formatter. It should not be null.

Return value: This method returns the formatted time string.

Exception: This method throws a DateTimeException if an error occurs during printing.

Below programs illustrate the format() method:

Program 1:




// Java program to demonstrate
// LocalTime.format() method
  
import java.time.*;
import java.time.format.DateTimeFormatter;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a LocalTime Objects
        LocalTime time
            = LocalTime.parse("03:18:23");
  
        // create formatter Object
        DateTimeFormatter formatter
            = DateTimeFormatter.ISO_TIME;
  
        // apply format
        String value = time.format(formatter);
  
        // print result
        System.out.println("value : "
                           + value);
    }
}


Output:

value : 03:18:23

Program 2:




// Java program to demonstrate
// LocalTime.format() method
  
import java.time.*;
import java.time.format.DateTimeFormatter;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a LocalTime Objects
        LocalTime time
            = LocalTime.parse("23:59:59");
  
        // create formatter Object for ISO_LOCAL_TIME
        DateTimeFormatter formatter
            = DateTimeFormatter.ISO_LOCAL_TIME;
  
        // apply format
        String value = time.format(formatter);
  
        // print result
        System.out.println("value : "
                           + value);
    }
}


Output:

value : 23:59:59

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalTime.html#format(java.time.format.DateTimeFormatter)

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS