Saturday, September 6, 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
32270 POSTS0 COMMENTS
Milvus
82 POSTS0 COMMENTS
Nango Kala
6639 POSTS0 COMMENTS
Nicole Veronica
11803 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11869 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7029 POSTS0 COMMENTS
Thapelo Manthata
6705 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS