The zonedDateTime() method of java.time.chrono.MinguoChronology class is used to retrieve the date and time of a particular zone according to Minguo calendar from a particular instant. Syntax:
public ZonedDateTime zonedDateTime(
Instant instant, ZoneId zone)
Parameter: This method takes the following arguments as parameter.
- instant: which is the object of type instant
- zone: which is the object of type zoneId
Return Value: This method returns the ZonedDateTime of a particular zone according to Minguo calendar from a particular instant. Below are the examples to illustrate the zonedDateTime() method: Example 1:
Java
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
public class GFG {
public static void main(String[] argv)
{
try {
MinguoDate hidate
= MinguoDate.now();
MinguoChronology crono
= hidate.getChronology();
ChronoZonedDateTime<MinguoDate> date
= crono.zonedDateTime(
Instant.now(),
ZoneId.systemDefault());
System.out.println(
"MinguoDate and time is: "
+ date);
}
catch (DateTimeException e) {
System.out.println(
"passed parameter can "
+ "not form a date");
System.out.println(
"Exception thrown: " + e);
}
}
}
|
Output:
MinguoDate and time is: Minguo ROC 109-04-20T14:24:49.696Z[Etc/UTC]
Example 2:
Java
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
public class GFG {
public static void main(String[] argv)
{
try {
MinguoDate hidate
= MinguoDate.now();
MinguoChronology crono
= hidate.getChronology();
ChronoZonedDateTime<MinguoDate> date
= crono.zonedDateTime(
Instant.ofEpochSecond( 25000 ),
ZoneId.systemDefault());
System.out.println(
"MinguoDate and time is: "
+ date);
}
catch (DateTimeException e) {
System.out.println(
"passed parameter can "
+ "not form a date");
System.out.println(
"Exception thrown: " + e);
}
}
}
|
Output:
MinguoDate and time is: Minguo ROC 59-01-01T06:56:40Z[Etc/UTC]
Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/MinguoChronology.html#zonedDateTime-java.time.Instant-java.time.ZoneId-
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
13 Dec, 2022
Like Article
Save Article