當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。