java 将数字转成百分比 (%)float integer double

本文转载自: http://jiangkan12.iteye.com/blog/1720599

java 将数字转成百分比 (%)float integer double 等等 
java.text.NumberFormat percentFormat =java.text.NumberFormat.getPercentInstance(); percentFormat.setMaximumFractionDigits(2); //最大小数位数 
percentFormat.setMaximumIntegerDigits(int);//最大整数位数 
percentFormat.setMinimumFractionDigits(2); //最小小数位数 
percentFormat.setMinimumIntegerDigits(int);//最小整数位数 
percentFormat.format(float)//自动转换成百分比显示.. 
非常方便. 
也可以用: 
1) java.text.DecimalFormat percentFormat =new java.text.DecimalFormat(); 
   percentFormat.format(long/double/float); 
   但这个我不知道怎样控制小数位数. 
2) 也可用bean-write标签,

你可能感兴趣的:(Java)