i found converting gregorian to hijri by joda time in java, but i want to convert specific Hijri date to Gregorian using joda-time .
also if there any way may help.
i found converting gregorian to hijri by joda time in java, but i want to convert specific Hijri date to Gregorian using joda-time .
also if there any way may help.
This works:
Chronology iso = ISOChronology.getInstanceUTC();
Chronology hijri = IslamicChronology.getInstanceUTC();
DateTime dtHijri = new DateTime(1436,02,02,22,22,hijri);
DateTime dtIso = new DateTime(dtHijri, iso);