Open In App

MinguoChronology dateEpochDay() method in Java with Example

Last Updated : 03 Feb, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

The dateEpochDay() method of java.time.chrono.MinguoChronology class is used get the local date according to Minguo calendar system from the Epoch Day.
Syntax: 
 

public MinguoDate dateEpochDay(long epochDay)

Parameter: This method takes the epochDay of type long as a parameter.
Return Value: This method returns the local date according to Minguo calendar system from the Epoch Day.
Exception: This method throws DateTimeException if the given epoch day is unable to form structured date.
Below are the examples to illustrate the dateEpochDay() method:
Example 1: 
 

Java




// Java program to demonstrate
// dateEpochDay() 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();
 
            // display the result
            System.out.println("current MinguoDate is: "
                               + hidate);
 
            // getting MinguoDate for the
            // given TemporalAccessor object
            // by using dateEpochDay() method
            hidate = crono.dateEpochDay(23456);
 
            // display the result
            System.out.println("\nMinguoDate(according "
                               + "to epochday) is: "
                               + hidate);
        }
        catch (DateTimeException e) {
            System.out.println("passed parameter can"
                               + " not form a date");
            System.out.println("Exception thrown: " + e);
        }
    }
}


Output

current MinguoDate is: Minguo ROC 112-01-28

MinguoDate(according to epochday) is: Minguo ROC 123-03-22

Example 2: 
 

Java




// Java program to demonstrate
// dateEpochDay() 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();
 
            // display the result
            System.out.println("current MinguoDate is: "
                               + hidate);
 
            // getting MinguoDate for the
            // given TemporalAccessor object
            // by using dateEpochDay() method
            hidate = crono.dateEpochDay(234568);
 
            // display the result
            System.out.println("\nMinguoDate(according "
                               + "to epochday) is: "
                               + hidate);
        }
        catch (DateTimeException e) {
            System.out.println("passed parameter can"
                               + " not form a date");
            System.out.println("Exception thrown: " + e);
        }
    }
}


Output

current MinguoDate is: Minguo ROC 112-01-28

MinguoDate(according to epochday) is: Minguo ROC 701-03-24

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/MinguoChronology.html#dateEpochDay-long-
 



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads