Java中的 ThaiBuddhistChronology date(int, int, int) 方法
Java.time.chrono.ThaiBuddhistChronology类的date()方法用于根据给定年、月和日的 ThaiBuddhist 日历系统获取本地日期。
句法:
public ThaiBuddhistDate date(int prolepticYear,
int month,
int dayOfMonth)
参数:此方法将以下参数作为参数。
- prolepticYear: ThaiBuddhist 年份字段的整数预测年份
- 月份: ThaiBuddhist 月份字段的整数月份
- day: ThaiBuddhist 的 day 字段的整数天
返回值:此方法根据泰国佛教日历系统返回给定年、月和日的ThaiBuddhistDate 。
异常:如果给定的日、月和年字段无法形成结构化日期,则此方法抛出DateTimeException 。
以下是说明date()方法的示例:
示例 1:
Java
// 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() method
ThaiBuddhistDate date
= crono.date(2018, 05, 24);
// display the result
System.out.println(
"ThaiBuddhistDate is: "
+ date);
}
catch (DateTimeException e) {
System.out.println("passed parameter can "
+ "not form a date");
System.out.println("Exception thrown: " + e);
}
}
}
Java
// 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() method
ThaiBuddhistDate date
= crono.date(2018, 05, -24);
// display the result
System.out.println(
"ThaiBuddhistDate is: "
+ date);
}
catch (DateTimeException e) {
System.out.println("passed parameter can "
+ "not form a date");
System.out.println("Exception thrown: " + e);
}
}
}
输出:
ThaiBuddhistDate is: ThaiBuddhist BE 2018-05-24
示例 2:
Java
// 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() method
ThaiBuddhistDate date
= crono.date(2018, 05, -24);
// display the result
System.out.println(
"ThaiBuddhistDate is: "
+ date);
}
catch (DateTimeException e) {
System.out.println("passed parameter can "
+ "not form a date");
System.out.println("Exception thrown: " + e);
}
}
}
输出
passed parameter 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-