Thursday, April 2, 2026
HomeLanguagesJavaHijrahChronology dateYearDay() method in Java with Example : Set 1

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

The dateYearDay() method of java.time.chrono.HijrahChronology class is used to retrieve the local date according to the Islamic hijri calendar for the particular year and date.
Syntax: 
 

public HijrahDate dateYearDay(int year,
                              int day)

Parameter: This method takes the following arguments as parameter: 
 

  • year: which is the integer proleptic year for the year field of HijrahDate
  • day: which is the integer day for the day field of HijrahDate

Return Value: This method returns the local date according to the Islamic hijri calendar for the particular year and date.
Exception: This method throws DateTimeException if the given field of day, month and year are unable to form a structured date.
Below are the examples to illustrate the dateYearDay() method:
Example 1: 
 

Java




// Java program to demonstrate
// dateYearDay() 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 for the
            // given date and year field
            // by using dateYearDay() method
            HijrahDate date = crono.dateYearDay(1440, 24);
 
            // display the result
            System.out.println("HijrahDate is: " + date);
        }
        catch (DateTimeException e) {
            System.out.println("passed parameter can "
                               + "not form a date");
            System.out.println("Exception thrown: " + e);
        }
    }
}


Output: 

HijrahDate is: Hijrah-umalqura AH 1440-01-24

 

Example 2: 
 

Java




// Java program to demonstrate
// dateYearDay() 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 for the
            // given date and year field
            // by using dateYearDay() method
            HijrahDate date = crono.dateYearDay(2019, 24);
 
            // display the result
            System.out.println("HijrahDate is: " + date);
        }
        catch (DateTimeException e) {
            System.out.println("passed parameter can "
                               + "not form a date");
            System.out.println("Exception thrown: " + e);
        }
    }
}


Output: 

passed parameter can not form a date
Exception thrown: java.time.DateTimeException: Invalid Hijrah date, year: 2019, month: 1

 

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/HijrahChronology.html#dateYearDay-int-int-
 

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

1 COMMENT

Most Popular

Dominic
32509 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6885 POSTS0 COMMENTS
Nicole Veronica
12005 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12100 POSTS0 COMMENTS
Shaida Kate Naidoo
7013 POSTS0 COMMENTS
Ted Musemwa
7257 POSTS0 COMMENTS
Thapelo Manthata
6968 POSTS0 COMMENTS
Umr Jansen
6958 POSTS0 COMMENTS