Open In App

ThaiBuddhistChronology dateNow(ZoneId) method in Java with Example

Last Updated : 12 May, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The dateNow() method of java.time.chrono.ThaiBuddhistChronology class is used get the current ThaiBuddhist according to ThaiBuddhist calendar system from the system clock in the specified time zone.

Syntax:

public ThaiBuddhistDate dateNow(ZoneId zone)

Parameter: This method takes the object of zone id as a parameter.

Return Value: This method returns the ThaiBuddhist date according to ThaiBuddhist calendar system from the specified clock object.

Below are the examples to illustrate the dateNow() method:

Example 1:




// 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
            // ThaiBuddhistDate Object
            ThaiBuddhistDate hidate
                = ThaiBuddhistDate.now();
  
            // getting ThaiBuddhistChronology
            // used in ThaiBuddhistDate
            ThaiBuddhistChronology crono
                = hidate.getChronology();
  
            // creating and initializing ZoneId object
            ZoneId id = ZoneId.systemDefault();
  
            // getting ThaiBuddhistDate for the
            // given zoneid object
            // by using dateNow() method
            ThaiBuddhistDate date = crono.dateNow(id);
  
            // display the result
            System.out.println("ThaiBuddhistDate is: "
                               + date);
        }
        catch (DateTimeException e) {
            System.out.println("passed parameter can"
                               + " not form a date");
            System.out.println("Exception thrown: " + e);
        }
    }
}


Output:

ThaiBuddhistDate is: ThaiBuddhist BE 2563-04-19

Example 2:




// 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
            // ThaiBuddhistDate Object
            ThaiBuddhistDate hidate
                = ThaiBuddhistDate.now();
  
            // getting ThaiBuddhistChronology
            // used in ThaiBuddhistDate
            ThaiBuddhistChronology crono
                = hidate.getChronology();
  
            // creating and initializing ZoneId object
            ZoneId id = ZoneId.of("Europe/Paris");
  
            // getting ThaiBuddhistDate for the
            // given zoneid object
            // by using dateNow() method
            ThaiBuddhistDate date = crono.dateNow(id);
  
            // display the result
            System.out.println("ThaiBuddhistDate is: "
                               + date);
        }
        catch (DateTimeException e) {
            System.out.println("passed parameter can"
                               + " not form a date");
            System.out.println("Exception thrown: " + e);
        }
    }
}


Output:

ThaiBuddhistDate is: ThaiBuddhist BE 2563-04-19

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



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

Similar Reads