The Hijri calendar system is somewhat different from the Gregorian calendar.
This example does not discuss the complete Hijri calendar. This is only to educate you regarding the existence of of the Hijri calendar. Googling will help you understand more about it.
Code sample:
import java.time.chrono.HijrahDate;public class UsingHijrahDate{ public static void main(String args[]) { UsingHijrahDate usingHijrahDate = new UsingHijrahDate(); usingHijrahDate.proceed(); } private void proceed() { HijrahDate hijrahDate = HijrahDate.now(); //Some methods that are commonly used System.out.println("hijrahDate.now(): " + hijrahDate); System.out.println("hijrahDate.isLeapYear(): " + hijrahDate.isLeapYear()); System.out.println("hijrahDate.getEra(): " + hijrahDate.getEra()); }}/*
Expected output:
[root@mypc]# java UsingHijrahDatehijrahDate.now(): Hijrah-umalqura AH 1440-11-27hijrahDate.isLeapYear(): falsehijrahDate.getEra(): AH*/
?
?
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.




















