NumberFormat.INTEGER_FIELD has the following syntax.
public static final int INTEGER_FIELD
In the following code shows how to use NumberFormat.INTEGER_FIELD field.
import java.text.FieldPosition; import java.text.NumberFormat; //from ww w . jav a2 s . com 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); } }
The code above generates the following result.