NumberFormat.setMaximumFractionDigits(int newValue) has the following syntax.
public void setMaximumFractionDigits(int newValue)
In the following code shows how to use NumberFormat.setMaximumFractionDigits(int newValue) method.
import java.text.NumberFormat; import java.util.Currency; import java.util.Locale; //from w ww . ja v a2 s.c o m public class Main { public static void main(String[] args) throws Exception { NumberFormat numberFormat = NumberFormat.getNumberInstance(); numberFormat.setCurrency(Currency.getInstance(Locale.CANADA)); numberFormat.setMaximumFractionDigits(2); } }