当前位置: 代码迷 >> Web前端 >> java社院学计数法的强制解除
  详细解决方案

java社院学计数法的强制解除

热度:179   发布时间:2012-07-03 13:37:43.0
java中科学计数法的强制解除
DecimalFormat format = (DecimalFormat) NumberFormat.getPercentInstance();
    
format.applyPattern("#####0");
    
double strCell = aCell.getNumericCellValue();
     
String temp = format.format(strCell);


----------------------方法2-------------------------
com.bstek.common.lang.convert.ConverterUtils.FORCE.convert
  相关解决方案