POI读取格式化后的单元格数据

    public static String getFormattedValue(Cell cell) {
        FormulaEvaluator evaluator = cell.getSheet().getWorkbook().getCreationHelper().createFormulaEvaluator();
        return new DataFormatter().formatCellValue(cell, evaluator);
    }
原文地址:https://www.cnblogs.com/yytxdy/p/11926603.html