Open In App

MinguoChronology zonedDateTime(TemporalAccessor) method in Java

Last Updated : 24 Apr, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The zonedDateTime() method of java.time.chrono.MinguoChronology class is used to get the zonal date and time according to Minguo calendar system from another TemporalAccessor object.

Syntax:

public ZonedDateTime zonedDateTime(
          TemporalAccessor temporal)

Parameter: This method takes the object of any temporal accessor as a parameter.

Return Value: This method returns the zonal date and time according to Minguo calendar system from another TemporalAccessor object.

Below are the examples to illustrate the zonedDateTime() method:

Example 1:




// Java program to demonstrate
// zonedDateTime() 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
            // MinguoDate Object
            MinguoDate hidate
                = MinguoDate.now();
  
            // getting MinguoChronology
            // used in MinguoDate
            MinguoChronology crono
                = hidate.getChronology();
  
            // creating and initializing
            // TemporalAccessor object
            ZonedDateTime zonedate
                = ZonedDateTime
                      .parse(
                          "2018-10-25T23:12:31."
                          + "123+02:00[Europe/Paris]");
  
            // getting MinguoDate and time for the
            // given TemporalAccessor object
            // by using zonedDateTime() method
            ChronoZonedDateTime<MinguoDate> date
                = crono.zonedDateTime(zonedate);
  
            // display the result
            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 107-10-25T23:12:31.123+02:00[Europe/Paris]

Example 2:




// Java program to demonstrate
// zonedDateTime() 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
            // MinguoDate Object
            MinguoDate hidate
                = MinguoDate.now();
  
            // getting MinguoChronology
            // used in MinguoDate
            MinguoChronology crono
                = hidate.getChronology();
  
            // creating and initializing
            // TemporalAccessor object
            LocalDateTime localdate
                = LocalDateTime.parse(
                    "2018-12-30T19:34:50.63");
  
            // getting MinguoDate and time for the
            // given TemporalAccessor object
            // by using zonedDateTime() method
            ChronoZonedDateTime<MinguoDate> date
                = crono.zonedDateTime(localdate);
  
            // display the result
            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:

passed parameter can not form a date
Exception thrown:
 java.time.DateTimeException:
 Unable to obtain ChronoZonedDateTime from TemporalAccessor:
 class java.time.LocalDateTime

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/MinguoChronology.html#zonedDateTime-java.time.temporal.TemporalAccessor-



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads