DecimalFormat setMinimumIntegerDigits() method in Java Last Updated : 01 Apr, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report The setMinimumIntegerDigits() method is a built-in method of the java.text.DecimalFomrat class in Java and is used to set the minimum number of digits allowed in the Integral part of a number. The Integral part of a number is the part displayed before the decimal(.) symbol. Syntax: public void setMinimumIntegerDigits(int newVal) Parameters: The function accepts a single parameter newVal which is the new value for the minimum number of integer digits allowed to be set for this DecimalFormat instance. Return Value: The function does not returns any value. Below is the implementation of the above function: Program 1: Java // Java program to illustrate the // setMinimumIntegerDigits() method import java.text.DecimalFormat; import java.text.DecimalFormatSymbols; import java.util.Currency; import java.util.Locale; public class Main { public static void main(String[] args) { // Create the DecimalFormat Instance DecimalFormat deciFormat = new DecimalFormat(); deciFormat.setMinimumIntegerDigits(6); System.out.println(deciFormat.format(1234.34)); } } Output: 001, 234.34 Program 2: Java // Java program to illustrate the // setMinimumIntegerDigits() method import java.text.DecimalFormat; import java.text.DecimalFormatSymbols; import java.util.Currency; import java.util.Locale; public class Main { public static void main(String[] args) { // Create the DecimalFormat Instance DecimalFormat deciFormat = new DecimalFormat(); deciFormat.setMinimumIntegerDigits(2); System.out.println(deciFormat.format(1234.34)); } } Output: 1, 234.34 Reference: https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#setMinimumIntegerDigits(int) Comment More infoAdvertise with us Next Article DecimalFormat setMaximumIntegerDigits() method in Java G gopaldave Follow Improve Article Tags : Java Java-Functions Java-text package Java-DecimalFormat Practice Tags : Java Similar Reads DecimalFormat setMaximumIntegerDigits() method in Java The setMaximumIntegerDigits() method is a built-in method of the java.text.DecimalFomrat class in Java and is used to set the maximum number of digits allowed in the Integral part of a number. The Integral part of a number is the part displayed before the decimal(.) symbol. Syntax: public void setMa 1 min read DecimalFormat setMinimumFractionDigits() method in Java The setMinimumFractionDigits() method is a built-in method of the java.text.DecimalFomrat class in Java and is used to set the minimum number of digits allowed in the fractional part of a number. The fractional part of a number is the part displayed after the decimal(.) symbol. Syntax: public void s 1 min read DecimalFormat setMaximumFractionDigits() method in Java The setMaximumFractionDigits() method is a built-in method of the java.text.DecimalFomrat class in Java and is used to set the maximum number of digits allowed in the fractional part of a number. The fractional part of a number is the part displayed after the decimal(.) symbol. Syntax: public void s 1 min read DecimalFormat setMultiplier() method in Java The setMultiplier() method is a built-in method of the java.text.DecimalFomrat class in Java and is used to a multiplier value to be used with this DecimalFormat instance. This multiplier value can be used while working with percent, percentile etc. For Example, for a multiplier value 10, the number 1 min read DecimalFormat setNegativePrefix() method in Java The setNegativePrefix() method of the DecimalFormat class in Java is used to set a negative value of this DecimalFormat instance. Syntax: public void setNegativePrefix(String newValue) Parameters: This method a single parameter newValue which is the new value to be set as a negative prefix for this 1 min read DecimalFormat setRoundingMode() method in Java The setRoundingMode() method is a built-in method of the java.text.DecimalFomrat class in Java and is used to set the RoundingMode to be used with this DecimalFormat instance to round-off the decimal digits. Syntax: public void setRoundingMode(RoundingMode roundingMode) Parameters: The function acce 1 min read Like