Java NumberFormat .setMinimumFractionDigits (int newValue)
Syntax
NumberFormat.setMinimumFractionDigits(int newValue) has the following syntax.
public void setMinimumFractionDigits(int newValue)
Example
In the following code shows how to use NumberFormat.setMinimumFractionDigits(int newValue) method.
/*from w ww. jav a 2 s .c om*/
import java.text.NumberFormat;
import java.util.Currency;
import java.util.Locale;
public class Main {
public static void main(String[] args) throws Exception {
NumberFormat numberFormat = NumberFormat.getNumberInstance();
numberFormat.setCurrency(Currency.getInstance(Locale.CANADA));
numberFormat.setMinimumFractionDigits(2);
}
}