Thursday, October 9, 2025
HomeLanguagesJavaDecimalFormat setParseBigDecimal() method in Java

DecimalFormat setParseBigDecimal() method in Java

The setParseBigDecimal() method of the DecimalFormat class in Java is used to set whether the parse() method of the DecimalFormat class will return a value of BigInteger type or not. If this method is set true, then the parse() method will return a BigDecimal value.

Syntax:

public void setParseBigDecimal(boolean newValue)

Parameters: This method accepts a single parameter newValue of boolean type. If this value is set true, then the parse() method will return a BigDecimal value.

Return Value: This method does not returns any value.

Below programs illustrate the above method:

Program 1:




// Java program to illustrate the
// setParseBigDecimal() method
  
import java.text.DecimalFormat;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Create a DecimalFormat instance
        DecimalFormat deciFormat = new DecimalFormat();
        deciFormat.setParseBigDecimal(true);
  
        System.out.println(deciFormat.isParseBigDecimal());
    }
}


Output:

true

Program 2:




// Java program to illustrate the
// setParseBigDecimal() method
  
import java.text.DecimalFormat;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Create a DecimalFormat instance
        DecimalFormat deciFormat = new DecimalFormat();
        deciFormat.setParseBigDecimal(false);
  
        System.out.println(deciFormat.isParseBigDecimal());
    }
}


Output:

false

Reference: https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#setParseBigDecimal(boolean)

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32346 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6715 POSTS0 COMMENTS
Nicole Veronica
11878 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6837 POSTS0 COMMENTS
Ted Musemwa
7095 POSTS0 COMMENTS
Thapelo Manthata
6790 POSTS0 COMMENTS
Umr Jansen
6791 POSTS0 COMMENTS