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
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
public class GFG {
public static void main(String[] argv)
{
try {
MinguoDate hidate
= MinguoDate.now();
MinguoChronology crono
= hidate.getChronology();
Clock clock = Clock.systemUTC();
MinguoDate date
= crono.dateNow(clock);
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
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
public class GFG {
public static void main(String[] argv)
{
try {
MinguoDate hidate
= MinguoDate.now();
MinguoChronology crono
= hidate.getChronology();
Clock clock = Clock.systemUTC();
clock = Clock.tick(
clock,
Duration.ofDays( 100 ));
MinguoDate date
= crono.dateNow(clock);
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