Java NumberFormat INTEGER_FIELD
Syntax
NumberFormat.INTEGER_FIELD has the following syntax.
public static final int INTEGER_FIELD
Example
In the following code shows how to use NumberFormat.INTEGER_FIELD field.
import java.text.FieldPosition;
import java.text.NumberFormat;
/*from ww w.ja v a2 s.c om*/
public class Main {
public static void main(String[] args) throws Exception {
NumberFormat numberFormat = NumberFormat.getPercentInstance();
StringBuffer sb = new StringBuffer();
Object value = 11.111;
numberFormat.format(value,sb,new FieldPosition(NumberFormat.FRACTION_FIELD));
System.out.println(sb);
}
}