HijrahChronology zonedDateTime() method in Java with Example : Set 1

Last Updated : 19 Dec, 2022

The zonedDateTime() method of java.time.chrono.HijrahChronology class is used to retrieve the date and time of a particular zone according to Islamic hijri calendar from a particular instant. Syntax:

public ChronoZonedDateTime zonedDateTime(Instant instant,
                                         ZoneId zone)

Parameter: This method takes the following arguments as parameter.

  • instant: which is the object of type instant
  • zone: which is the object of type zoneId

Return Value: This method returns the date and time of a particular zone according to Islamic hijri calendar from a particular instant. Below are the examples to illustrate the zonedDateTime() method: Example 1: 

Java
// Java program to demonstrate
// zonedDateTime() method

import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;

public class GFG {
    public static void main(String[] argv)
    {
        try {
            // creating and initializing  HijrahDate Object
            HijrahDate hidate = HijrahDate.now();

            // getting HijrahChronology used in HijrahDate
            HijrahChronology crono = hidate.getChronology();

            // getting HijrahDate and time for the
            // given Instant and ZoneId
            // by using zonedDateTime() method
            ChronoZonedDateTime<HijrahDate> date
                = crono.zonedDateTime(
                    Instant.now(),
                    ZoneId.systemDefault());

            // display the result
            System.out.println("HijrahDate and time is: "
                               + date);
        }
        catch (DateTimeException e) {
            System.out.println("passed parameter can "
                               + "not form a date");
            System.out.println("Exception thrown: " + e);
        }
    }
}
Output:
HijrahDate and time is: Hijrah-umalqura AH 1441-06-18T13:10:48.843Z[Etc/UTC]

Example 2: 

Java
// Java program to demonstrate
// zonedDateTime() method

import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;

public class GFG {
    public static void main(String[] argv)
    {
        try {
            // creating and initializing  HijrahDate Object
            HijrahDate hidate = HijrahDate.now();

            // getting HijrahChronology used in HijrahDate
            HijrahChronology crono = hidate.getChronology();

            // getting HijrahDate and time for the
            // given Instant and ZoneId
            // by using zonedDateTime() method
            ChronoZonedDateTime<HijrahDate> date
                = crono.zonedDateTime(
                    Instant.ofEpochSecond(25000),
                    ZoneId.systemDefault());

            // display the result
            System.out.println("HijrahDate and time is: "
                               + date);
        }
        catch (DateTimeException e) {
            System.out.println("passed parameter can "
                               + "not form a date");
            System.out.println("Exception thrown: " + e);
        }
    }
}
Output:
HijrahDate and time is: Hijrah-umalqura AH 1389-10-22T06:56:40Z[Etc/UTC]

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/HijrahChronology.html#zonedDateTime-java.time.Instant-java.time.ZoneId-

Comment