Friday, November 21, 2025
HomeLanguagesJavaZonedDateTime getHour() method in Java with Examples

ZonedDateTime getHour() method in Java with Examples

The getHour() method of a ZonedDateTime class used to get the hour-of-day field from this ZonedDateTime. This method returns the integer value for the hour from 0 to 23.

Syntax:

public int getHour()

Parameters: This method does not take any parameters.

Return value: This method returns an integer representing hour, from 0 to 23.

Below programs illustrate the getHour() method:

Program 1:




// Java program to demonstrate
// ZonedDateTime.getHour() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a ZonedDateTime object
        ZonedDateTime zoneddatetime
            = ZonedDateTime.parse(
                "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
  
        // get hour field
        int value = zoneddatetime.getHour();
  
        // print result
        System.out.println("hour: " + value);
    }
}


Output:

hour: 19

Program 2:




// Java program to demonstrate
// ZonedDateTime.getHour() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a ZonedDateTime object
        ZonedDateTime zoneddatetime
            = ZonedDateTime.parse(
                "2018-10-25T23:12:38.543+02:00[Europe/Paris]");
  
        // get hour field
        int value = zoneddatetime.getHour();
  
        // print result
        System.out.println("hour: " + value);
    }
}


Output:

hour: 23

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/ZonedDateTime.html#getHour()

RELATED ARTICLES

Most Popular

Dominic
32405 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6783 POSTS0 COMMENTS
Nicole Veronica
11928 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11997 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7167 POSTS0 COMMENTS
Thapelo Manthata
6862 POSTS0 COMMENTS
Umr Jansen
6847 POSTS0 COMMENTS