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

你可能感兴趣的:(format)