The dateNow() method of java.time.chrono.MinguoChronology class is used get the current Minguo date according to Minguo calendar system from the specified clock object. Syntax:
public MinguoDate dateNow(Clock clock)
Parameter: This method takes the object of clock as a parameter which is used get the current Minguo date according to Minguo calendar system from the specified clock object. Return Value: This method returns the Minguo date according to Minguo calendar system from the specified clock object. Below are the examples to illustrate the dateNow() method: Example 1:Â
Java
// Java program to demonstrate// dateNow() 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            // clock object            Clock clock = Clock.systemUTC();Â
            // getting MinguoDate for the            // given clock object            // by using dateNow() method            MinguoDate date                = crono.dateNow(clock);Â
            // 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);        }    }} |
MinguoDate is: Minguo ROC 109-04-15
Example 2:Â
Java
// Java program to demonstrate// dateNow() 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            // clock object            Clock clock = Clock.systemUTC();Â
            // setting clock            clock = Clock.tick(                clock,                Duration.ofDays(100));Â
            // getting MinguoDate for the            // given clock object            // by using dateNow() method            MinguoDate date                = crono.dateNow(clock);Â
            // 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);        }    }} |
MinguoDate is: Minguo ROC 109-02-08
