Thursday, October 23, 2025
HomeLanguagesJavaDecimalFormatSymbols getInstance(Locale) method in Java with Examples

DecimalFormatSymbols getInstance(Locale) method in Java with Examples

The getInstance(Locale) method of java.text.DecimalFormatSymbols class in Java is used to get the DecimalFormatSymbols instance for the specified Locale. This method is final and cannot be overridden or changed. It takes the Locale for which the DecimalFormatSymbols is required, as a parameter and returns the respective instance of that DecimalFormatSymbols.

Syntax:

public static final DecimalFormatSymbols
    getInstance(Locale locale)

Parameter: This method accepts a parameter Locale which is the locale for which the DecimalFormatSymbols instance is returned.

Return Value: This method returns an instance of the DecimalFormatSymbols with the specified Locale.

Exception: This method do not throw any Exception.

Program:




// Java program to demonstrate
// the above method
  
import java.text.*;
import java.util.*;
  
public class DecimalFormatSymbolsDemo {
    public static void main(String[] args)
    {
  
        DecimalFormatSymbols dfs
            = new DecimalFormatSymbols();
  
        Locale locale = new Locale("ENGLISH");
  
        System.out.println("DecimalFormatSymbols "
                           + "with ENGLISH Locale: "
                           + dfs.getInstance(locale));
    }
}


Output:

DecimalFormatSymbols with ENGLISH Locale:
 java.text.DecimalFormatSymbols@1073a

Reference: https://docs.oracle.com/javase/9/docs/api/java/text/DecimalFormatSymbols.html#getInstance-java.util.Locale-

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS