Thursday, April 2, 2026
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
32512 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6885 POSTS0 COMMENTS
Nicole Veronica
12006 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12100 POSTS0 COMMENTS
Shaida Kate Naidoo
7015 POSTS0 COMMENTS
Ted Musemwa
7259 POSTS0 COMMENTS
Thapelo Manthata
6971 POSTS0 COMMENTS
Umr Jansen
6960 POSTS0 COMMENTS