java.time.chrono.ThaiBuddhistDate类的from()方法用于根据ThaiBuddhist日历系统获取特定时间对象的ThaiBuddhist日期。
用法:
public static ThaiBuddhistDate from(TemporalAccessor temporal)
参数:此方法以将要形成ThaiBuddhist日期的任何时间访问器为对象。
返回值:此方法根据ThaiBuddhist日历系统返回指定时间对象的ThaiBuddhist日期。
下面是说明from()方法的示例:
范例1:
// Java program to demonstrate from() method
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] argv)
{
try {
// Creating and initializing
// TemporalAccessor object
ZonedDateTime
zonedate
= ZonedDateTime.parse(
"2018-10-25T23:12:31."
+ "123+02:00[Europe/Paris]");
// Creating and initializing
// ThaiBuddhistDate Object
ThaiBuddhistDate hidate
= ThaiBuddhistDate
.from(zonedate);
// Display the result
System.out.println(
"ThaiBuddhistDate:"
+ hidate);
}
catch (DateTimeException e) {
System.out.println(
"Passed parameter can"
+ " not form a date");
System.out.println(
"Exception thrown:"
+ e);
}
}
}
输出:
ThaiBuddhistDate:ThaiBuddhist BE 2561-10-25
范例2:
// Java program to demonstrate from() method
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] argv)
{
try {
// Creating and initializing
// TemporalAccessor object
LocalDateTime
localdate
= LocalDateTime.parse(
"2018-12-30T19:34:50.63");
// Creating and initializing
// ThaiBuddhistDate Object
ThaiBuddhistDate hidate
= ThaiBuddhistDate
.from(localdate);
// Display the result
System.out.println(
"ThaiBuddhistDate:"
+ hidate);
}
catch (DateTimeException e) {
System.out.println(
"Passed parameter can"
+ " not form a date");
System.out.println(
"Exception thrown:"
+ e);
}
}
}
输出:
ThaiBuddhistDate:ThaiBuddhist BE 2561-12-30
相关用法
- Java ThaiBuddhistDate of()用法及代码示例
- Java ThaiBuddhistDate getEra()用法及代码示例
- Java ThaiBuddhistDate toString()用法及代码示例
- Java ThaiBuddhistDate hashCode()用法及代码示例
- Java ThaiBuddhistDate getLong()用法及代码示例
- Java ThaiBuddhistDate now(Clock)用法及代码示例
- Java ThaiBuddhistDate lengthOfMonth()用法及代码示例
- Java ThaiBuddhistDate range()用法及代码示例
- Java ThaiBuddhistDate getChronology()用法及代码示例
- Java ThaiBuddhistDate atTime()用法及代码示例
- Java ThaiBuddhistDate equals()用法及代码示例
- Java ThaiBuddhistDate now(ZoneId)用法及代码示例
- Java ThaiBuddhistDate minus(long, TemporalUnit)用法及代码示例
- Java Java lang.Long.builtcount()用法及代码示例
- Java Java lang.Long.reverse()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 ThaiBuddhistDate from() method in Java with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。