Java NumberFormat .setParseIntegerOnly (boolean value)
Syntax
NumberFormat.setParseIntegerOnly(boolean value) has the following syntax.
public void setParseIntegerOnly(boolean value)
Example
In the following code shows how to use NumberFormat.setParseIntegerOnly(boolean value) method.
/* www . ja va 2s . c o m*/
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.setParseIntegerOnly(true);
}
}