当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java HijrahChronology date()方法用法及代码示例


java.time.chrono.HijrahChronology类的date()方法用于根据Hijrah日历系统获取给定年,月和日的本地日期。

用法:

public HijrahDate date(int prolepticYear,
                       int month,
                       int day)

参数:此方法采用以下参数作为参数。



  • prolepticYear:HijrahDate的year字段的整数预言年
  • month:HijrahDate的month字段的整数month
  • day:HijrahDate的日字段的整数日

返回值:此方法根据Hijrah日历系统返回给定年,月和日的本地日期。

异常:如果日,月和年的给定字段无法形成结构化日期,则此方法将引发DateTimeException。

下面是说明date()方法的示例:

范例1:

// Java program to demonstrate 
// date() 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, month and year field 
            // by using date() mehtod 
            HijrahDate date = crono.date(1440, 05, 24); 
  
            // display the result 
            System.out.println("HijrahDate is:" + date); 
        } 
        catch (DateTimeException e) { 
            System.out.println("passed paramter can "
                               + "not form a date"); 
            System.out.println("Exception thrown:" + e); 
        } 
    } 
}
输出:
HijrahDate is:Hijrah-umalqura AH 1440-05-24

范例2:

// Java program to demonstrate 
// date() 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, month and year field 
            // by using date() mehtod 
            HijrahDate date = crono.date(2019, 05, 24); 
  
            // display the result 
            System.out.println("HijrahDate is:" + date); 
        } 
        catch (DateTimeException e) { 
            System.out.println("Exception thrown:" + e); 
        } 
    } 
}
输出:
Exception thrown:java.time.DateTimeException:Invalid Hijrah date, year:2019, month:5

参考: https://docs.oracle.com/javase/9/docs/api/java/time/DateTimeException.html




相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 HijrahChronology date() method in Java with Example : Set – 1。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。