Open In App
Related Articles

MinguoChronology dateNow(Clock) method in Java with Example

Improve Article
Improve
Save Article
Save
Like Article
Like

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);
        }
    }
}


Output:

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);
        }
    }
}


Output:

MinguoDate is: Minguo ROC 109-02-08

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


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 : 23 Jan, 2023
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials