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


Java ThaiBuddhistChronology date(int, int, int)用法及代码示例


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

用法:

public ThaiBuddhistDate date(int prolepticYear,
                         int month,
                         int dayOfMonth)

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



  • prolepticYear:ThaiBuddhist的Year字段的整数整数年份
  • month:ThaiBuddhist的month字段的整数month
  • day:ThaiBuddhist的日字段的整数天

返回值:此方法根据给定年,月和日的泰国佛教日历系统返回ThaiBuddhistDate。

异常:如果日,月和年的给定字段无法形成结构化日期,则此方法将引发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 
            // ThaiBuddhistDate Object 
            ThaiBuddhistDate lodate 
                = ThaiBuddhistDate.now(); 
  
            // getting ThaiBuddhistChronology 
            // used in ThaiBuddhistDate 
            ThaiBuddhistChronology crono 
                = lodate.getChronology(); 
  
            // getting ThaiBuddhistDate for the 
            // given date, month and year field 
            // by using date() mehtod 
            ThaiBuddhistDate date 
                = crono.date(2018, 05, 24); 
  
            // display the result 
            System.out.println( 
                "ThaiBuddhistDate is:"
                + date); 
        } 
        catch (DateTimeException e) { 
            System.out.println("passed paramter can "
                               + "not form a date"); 
            System.out.println("Exception thrown:" + e); 
        } 
    } 
}
输出:
ThaiBuddhistDate is:ThaiBuddhist BE 2018-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 
            // ThaiBuddhistDate Object 
            ThaiBuddhistDate lodate 
                = ThaiBuddhistDate.now(); 
  
            // getting ThaiBuddhistChronology 
            // used in ThaiBuddhistDate 
            ThaiBuddhistChronology crono 
                = lodate.getChronology(); 
  
            // getting ThaiBuddhistDate for the 
            // given date, month and year field 
            // by using date() mehtod 
            ThaiBuddhistDate date 
                = crono.date(2018, 05, -24); 
  
            // display the result 
            System.out.println( 
                "ThaiBuddhistDate is:"
                + date); 
        } 
        catch (DateTimeException e) { 
            System.out.println("passed paramter can "
                               + "not form a date"); 
            System.out.println("Exception thrown:" + e); 
        } 
    } 
}
输出:
passed paramter can not form a date
Exception thrown:
 java.time.DateTimeException:
 Invalid value for DayOfMonth (valid values 1 - 28/31):-24

参考: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ThaiBuddhistChronology.html#date-int-int-int-




相关用法


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