Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Locale toString() Method in Java with Examples

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The toString() method of Locale class in Java is used to return a string representation of this locale. Each element i.e., the language, country or the variant of the locale is separated by underbars

Syntax:

LOCALE.toString()

Parameters: This method does not take any parameters.

Return Value: This method returns a string representation of this locale.

Below programs illustrate the working of toString() method:

Program 1:




// Java code to illustrate toString() method
  
import java.util.*;
  
public class Locale_Demo {
    public static void main(String[] args)
    {
  
        // Creating a new locale
        Locale first_locale
            = new Locale("nu", "NO", "NY");
  
        // Displaying first locale
        System.out.println("First Locale: "
                           + first_locale);
  
        // Displaying the string of this locale
        System.out.println("The String: "
                           + first_locale.toString());
    }
}

Output:

First Locale: nu_NO_NY
The String: nu_NO_NY

Program 2:




// Java code to illustrate toString() method
  
import java.util.*;
  
public class Locale_Demo {
    public static void main(String[] args)
    {
  
        // Creating a new locale
        Locale first_locale
            = new Locale("ar", "SA");
  
        // Displaying first locale
        System.out.println("First Locale: "
                           + first_locale);
  
        // Displaying the string of this locale
        System.out.println("The String: "
                           + first_locale.toString());
    }
}

Output:

First Locale: ar_SA
The String: ar_SA

My Personal Notes arrow_drop_up
Last Updated : 27 Dec, 2018
Like Article
Save Article
Similar Reads
Related Tutorials