Java读取Excel时手机号码等变成科学计数法

Java读取Excel时手机号码等变成科学计数法,第1张

Java读取Excel时手机号码等变成科学计数
//获取单元格类型
int cellType = row.getCell(j).getCellType();
//解决手机号等数值型内容(excel中单元格设置为文本也不行)变成科学计数法
if (row.getCell(j)!=null){
    if (cellType==0){  //cellType为0说明是数值型
        DecimalFormat df = new DecimalFormat("#");
        columnValueMap.put(headerList.get(j), df.format(row.getCell(j).getNumericCellValue()));
    }else {
        columnValueMap.put(headerList.get(j), row.getCell(j).toString());

    }
}else {
    columnValueMap.put(headerList.get(j), null);
}

方法可能不够好,但完美解决

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5687455.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存