一种浮点数控制小数位数的方法

 一种浮点数控制小数位数的方法
  1. double per = 0.258283;
  2.                 
  3. DecimalFormat df = (DecimalFormat)NumberFormat.getPercentInstance();
  4. df.applyPattern("0.00%"); //小数点后保留二位
  5. String str = df.format(per);

你可能感兴趣的:(一种浮点数控制小数位数的方法)