Thursday, October 23, 2025
HomeLanguagesJavaMinguoChronology date(int, int, int) method in Java with Example

MinguoChronology date(int, int, int) method in Java with Example

The date() method of java.time.chrono.MinguoChronology class is used get the local date according to Minguo calendar system for the given year, month and day.
Syntax: 
 

public MinguoDate date(int prolepticYear,
                       int month,
                       int dayOfMonth)

Parameter: This method takes the following arguments as parameter. 
 

  • prolepticYear: integer proleptic year for the year field of MinguoDate
  • month: integer month for the month field of MinguoDate
  • day: integer day for the day field of MinguoDate

Return Value: This method returns the local date according to Minguo calendar system for the given year, month and day.
Exception: This method throws DateTimeException if the given field of day, month and year are unable to form a structured date.
Below are the examples to illustrate the date() method:
Example 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
            // MinguoDate Object
            MinguoDate hidate = MinguoDate.now();
 
            // getting MinguoChronology
            // used in MinguoDate
            MinguoChronology crono
                = hidate.getChronology();
 
            // getting MinguoDate for the
            // given date, month and year field
            // by using date() method
            MinguoDate date = crono.date(2040, 05, 24);
 
            // display the result
            System.out.println("MinguoDate is: " + date);
        }
        catch (DateTimeException e) {
            System.out.println("passed parameter can "
                               + "not form a date");
            System.out.println("Exception thrown: " + e);
        }
    }
}


Output: 

MinguoDate is: Minguo ROC 2040-05-24

 

Example 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
            // MinguoDate Object
            MinguoDate hidate = MinguoDate.now();
 
            // getting MinguoChronology
            // used in MinguoDate
            MinguoChronology crono
                = hidate.getChronology();
 
            // getting MinguoDate for the
            // given date, month and year field
            // by using date() method
            MinguoDate date
                = crono.date(2040, 05, -24);
 
            // display the result
            System.out.println("MinguoDate 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: Invalid value for DayOfMonth (valid values 1 - 28/31): -24

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

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS