怎么把Gregorain年转换成Hijri年? [英] How can i convert Gregorain year to Hijri year?

查看:131
本文介绍了怎么把Gregorain年转换成Hijri年?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用HijrahChronology库在Java 8中将公历日期转换为Hijri日期。
我尝试了以下代码,但无法正常工作。

I want to convert Gregorian date to Hijri date in java 8 using HijrahChronology library. I've tried the codes below but don't work accurately.

  Date date = new Date(); // Gregorian date
  Calendar cl=Calendar.getInstance();
  cl.set(Calendar.YEAR, date.getYear());

  HijrahDate islamyDate = HijrahChronology.INSTANCE.date(LocalDate.of(cl.get(Calendar.YEAR),cl.get(Calendar.MONTH)+1, cl.get(Calendar.DATE)));


        DateTimeFormatter dateFormatter = DateTimeFormatter.ofPattern("uuuu");
        String gregorianString = "1994";
        LocalDate gregorianDate = LocalDate.parse(gregorianString, dateFormatter);
        HijrahDate islamicDate = HijrahDate.from(gregorianDate);
        System.out.println("Islamic date: " + islamicDate);

更新:
我只想转换年份部分。

Update: I want to convert only the year part.

推荐答案

您只需传递 TemporalAccessor 例如 LocalDate ZonedDateTime 等到 HijrahChronology.INSTANCE#date 如下所示:

You can simply pass a TemporalAccessor e.g. LocalDate, ZonedDateTime etc. to HijrahChronology.INSTANCE#date as shown below:

import java.time.LocalDate;
import java.time.Month;
import java.time.ZoneId;
import java.time.chrono.HijrahChronology;
import java.time.chrono.HijrahDate;
import java.time.temporal.TemporalAdjusters;

public class Main {
    public static void main(String[] args) {
        // Change the time-zone as per your requirement.
        ZoneId myZoneId = ZoneId.of("Etc/UTC");

        HijrahDate hijrahDate1 = HijrahChronology.INSTANCE.date(LocalDate.now(myZoneId));
        System.out.println(hijrahDate1);

        // ########Another example########

        // HijrahDate on the last day of January 1994 at the time zone of Etc/UTC
        HijrahDate hijrahDate2 = HijrahChronology
                .INSTANCE                                   // Instance of HijrahChronology
                .date(LocalDate.of(1994, Month.JANUARY, 1)  // LocalDate of 01-Jan-1994
                .with(TemporalAdjusters.lastDayOfMonth())   // On the last day of Jan-1994
                .atStartOfDay()                             // At the start of the day i.e. 00:00
                .atZone(myZoneId));                         // At the time zone of Etc/UTC
        System.out.println(hijrahDate2);
    }
}

输出:

Hijrah-umalqura AH 1441-12-27
Hijrah-umalqura AH 1414-08-19

通过 线索:日期时间

Learn more about the Java-8 date-time API at Trail: Date Time.

这篇关于怎么把Gregorain年转换成Hijri年?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆