Friday, July 3, 2026
HomeLanguagesJavaThaiBuddhistDate toString() method in Java with Example

ThaiBuddhistDate toString() method in Java with Example

The toString() method of java.time.chrono.ThaiBuddhistDate class is used to represent this ThaiBuddhist date in a string format. The method simply returns the text-format of this object which is easy to read and contains the required information of the date. Syntax:

public String toString()

Overrides: The toString() method overrides the Object class in Java. Parameter: This method does not accept any argument as a parameter. Return Value: This method returns the ThaiBuddhist date in a string format. Below programs illustrate the toString() method: Program 1: 

Java




// Java program to demonstrate
// toString() method
 
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.*;
 
public class GFG {
    public static void main(String[] argv)
    {
        try {
            // Creating and initializing
            // ThaiBuddhistDate Object
            ThaiBuddhistDate hidate
                = ThaiBuddhistDate.now();
 
            // Getting string representation
            // of ThaiBuddhist date
            // by using toString() method
            String date = hidate.toString();
 
            // Display the result
            System.out.println(
                "ThaiBuddhistdate : "
                + date);
        }
        catch (DateTimeException e) {
            System.out.println(
                "passed parameter can"
                + " not form a date");
            System.out.println(
                "Exception thrown: "
                + e);
        }
    }
}


Output:

ThaiBuddhistdate : ThaiBuddhist BE 2563-05-08

Program 2: 

Java




// Java program to demonstrate
// toString() method
 
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.*;
 
public class GFG {
    public static void main(String[] argv)
    {
        try {
            // Creating and initializing
            // ThaiBuddhistDate Object
            ThaiBuddhistDate hidate
                = ThaiBuddhistDate.of(
                    1345, 05, 23);
 
            // Getting string representation
            // of ThaiBuddhist date
            // by using toString() method
            String date = hidate.toString();
 
            // Display the result
            System.out.println(
                "ThaiBuddhistdate : "
                + date);
        }
        catch (DateTimeException e) {
            System.out.println(
                "passed parameter can"
                + " not form a date");
            System.out.println(
                "Exception thrown: "
                + e);
        }
    }
}


Output:

ThaiBuddhistdate : ThaiBuddhist BE 1345-05-23

Reference:https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ThaiBuddhistDate.html#toString–

RELATED ARTICLES

4 COMMENTS

Most Popular

Dominic
32519 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6900 POSTS0 COMMENTS
Nicole Veronica
12015 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12110 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6966 POSTS0 COMMENTS