使用POI库读取Excel文件时,手机号码可能会显示为科学计数法的格式

处理Excel文件中的手机号码格式问题

  • 使用POI库加载Excel文件并获取单元格数据。
  • 检查单元格的数据类型,如果为数字类型(Numeric),则可能需要进行格式转换。
  • 如果单元格的数据类型为数字,可以通过以下步骤将科学计数法格式转换为字符串格式:
    • a. 使用DecimalFormat类创建一个格式化模式,例如:“0”。
    • b. 将单元格的数值转换为字符串格式,使用DecimalFormat的format()方法进行转换。
  • 将转换后的字符串作为手机号码处理,继续进行后续操作

代码如下:

public static String getCellValue(Cell cell) {
        switch (cell.getCellType()) {
            case BOOLEAN:
                return String.valueOf(cell.getBooleanCellValue());
            case STRING:
                return cell.getStringCellValue();
            case NUMERIC:
                if (DateUtil.isCellDateFormatted(cell)) {
                    DateTimeFormatter timeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
                    return timeFormatter.format(cell.getLocalDateTimeCellValue());
                } else {
                    if (!String.valueOf(cell.getNumericCellValue()).contains("E")) {
                        return String.valueOf(cell.getNumericCellValue());
                    } else {
                        return new DecimalFormat("#").format(cell.getNumericCellValue());
                    }
                }
            case FORMULA:
                return cell.getCellFormula() + EMPTY;
            default:
                return EMPTY;
        }
    }

你可能感兴趣的:(日常,java,list,后端)