Tuesday, July 14, 2026
HomeLanguagesJavaLocalTime now(ZoneId) method in Java with Examples

LocalTime now(ZoneId) method in Java with Examples

The now(ZoneId zone) method of the LocalTime class in Java is used to get the current time from the system clock in the specified time-zone.

Syntax:

public static LocalTime now(ZoneId zone)

Parameters: This method accepts ZoneId as parameter.

Return value: This method returns the current time using the system clock.

Below programs illustrate the now(ZoneId zone) method of LocalTime in Java:

Program 1:




// Java program to demonstrate
// LocalTime.now(ZoneId zone) method
  
import java.time.*;
import java.time.temporal.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // apply now(ZoneId zone) method
        // of LocalTime class
        LocalTime time = LocalTime.now(
            ZoneId.systemDefault());
  
        // print time
        System.out.println("Time: "
                           + time);
    }
}


Output:

Time: 20:57:30.035

Program 2:




// Java program to demonstrate
// LocalTime.now(ZoneId zone) method
  
import java.time.*;
import java.time.temporal.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // apply now(ZoneId zone) method
        // of LocalTime class
        LocalTime time = LocalTime.now(
            ZoneId.systemDefault());
  
        // print time
        System.out.println("Time: "
                           + time);
    }
}


Output:

Time: 20:57:50.318

References: https://docs.oracle.com/javase/10/docs/api/java/time/LocalTime.html#now(java.time.ZoneId)

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32519 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6901 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12111 POSTS0 COMMENTS
Shaida Kate Naidoo
7022 POSTS0 COMMENTS
Ted Musemwa
7263 POSTS0 COMMENTS
Thapelo Manthata
6978 POSTS0 COMMENTS
Umr Jansen
6968 POSTS0 COMMENTS