Joda time - IllegalFieldValueException:dayOfMonth的值30必须在[1,29]范围内

时间:2017-11-28 10:51:22

标签: java jodatime hijri

有一个外部系统调用,它在hijri中返回一个日期。在制作环境中,我们收到了'30-02-1436'

考虑将hijri转换为格里高利日期的片段,但它没有这样做。

    public static String convertHijriToGregorianDate(String hijriDate){
        Chronology iso = ISOChronology.getInstanceUTC(); // get the ISO standard chronology which we follow now
        Chronology hijri = IslamicChronology.getInstanceUTC(); // the hijri based chronology
        //String hijriDate = "19-08-1435"; // example/format which is received as a parameter in the method from response

        if(null != hijriDate && !hijriDate.isEmpty()){
            String[] parts = hijriDate.trim().split("-"); // you will get an array of size 3 by splitting with regex '-'
            String hijriYear = parts[2];
            String hijriMonth = parts[1];
            String hijriDay = parts[0];

            // Construct the Local Date corresponding to the hijri chronology
            LocalDate todayHijri = new LocalDate(Integer.parseInt(hijriYear), Integer.parseInt(hijriMonth), Integer.parseInt(hijriDay), hijri);

            // Construct the Local Date corresponding to the iso chronology based on the hijri date
            LocalDate todayIso = new LocalDate(todayHijri.toDateTimeAtStartOfDay(), iso);
            return String.valueOf(todayIso);
        }
        return null;
    }

请建议代码有什么问题。我们在stacktrace中遇到了这个问题 -

  

org.joda.time.IllegalFieldValueException:dayOfMonth的值30必须   在[1,29]范围内                   在org.joda.time.field.FieldUtils.verifyValueBounds(FieldUtils.java:252)                   at org.joda.time.chrono.BasicChronology.getDateMidnightMillis(BasicChronology.java:632)                   at org.joda.time.chrono.BasicChronology.getDateTimeMillis0(BasicChronology.java:186)                   在org.joda.time.chrono.BasicChronology.getDateTimeMillis(BasicChronology.java:160)                   在org.joda.time.chrono.LimitChronology.getDateTimeMillis(LimitChronology.java:177)                   at org.joda.time.chrono.BasicChronology.getDateTimeMillis(BasicChronology.java:155)                   在org.joda.time.LocalDate。(LocalDate.java:457)

使用的Joda时间版本为2.9.1

2 个答案:

答案 0 :(得分:2)

我已经通过表达式

检查了Joda-Time中所有可用的闰年模式(= 4)
Chronology hijri = 
    IslamicChronology.getInstance(DateTimeZone.UTC, IslamicChronology.LEAP_YEAR_15_BASED);

不幸的是,没有什么对你有用。然而,沙特阿拉伯的umalqura日历认为'30 -02-1436'是有效的。它对应于2014-12-22的格里高利日期。

Joda-Time不支持这种伊斯兰日历变体,因此除非您愿意迁移到包含umalqura变体的Java-8,否则您无法在此处执行任何操作。

System.out.println(HijrahDate.of(1436, 2, 30)); // Hijrah-umalqura AH 1436-02-30

DateTimeFormatter fh =
    DateTimeFormatter.ofPattern(
        "dd-MM-yyyy",
        Locale.forLanguageTag("en")
    ).withChronology(HijrahChronology.INSTANCE);
System.out.println(HijrahDate.from(fh.parse(input))); 
// Hijrah-umalqura AH 1436-02-30
System.out.println(LocalDate.from(HijrahDate.from(fh.parse(input)))); 
// 2014-12-22

注意:遗憾的是,unicode扩展程序Locale.forLanguageTag("en-u-ca-islamic-umalqura")似乎无法在我的实验中发挥作用,因此明确指定时间顺序是必要的。

<强>替代:

如果您无法迁移到Java-8甚至需要更多伊斯兰日历功能(例如Joda-Time中使用的其他变体),那么您也可以试用我的库Time4J

String input = "30-02-1436";
ChronoFormatter<HijriCalendar> hf =
    ChronoFormatter.ofPattern(
        "dd-MM-yyyy",
        PatternType.CLDR,
        Locale.ROOT,
        HijriCalendar.family()
    ).withCalendarVariant(HijriCalendar.VARIANT_UMALQURA).with(Leniency.STRICT);
System.out.println(hf.parse(input)); // AH-1436-02-30[islamic-umalqura]
System.out.println(hf.parse(input).transform(PlainDate.axis())); // 2014-12-22

答案 1 :(得分:1)

日期被解释为2月30日,但是该月中的日期必须少于30天。这说明了错误消息。因此,请更正输入内容,使其与可能的日期相对应。