poi读取Excel文件并进行数据类型转换

工具类

/**
     * 将字段转为相应的格式
     *
     * @param cell
     * @return
     */
    private static Object getCellFormatValue(Cell cell) {
        Object returnValue = null;

        if (cell != null || cell.getCellType() != Cell.CELL_TYPE_BLANK) {
            switch (cell.getCellType()) {
                case Cell.CELL_TYPE_NUMERIC:   //数字
                    Double doubleValue = cell.getNumericCellValue();
                    String str = doubleValue.toString();
                    if (str.contains(".0")) {
                        Date years = getJavaDate(doubleValue);
                        returnValue = DateFormatUtil.simpleDateFormat.format(years);
                    } else {
                        //读取手机号显示错误  类形转换
                        DecimalFormat df = new DecimalFormat("#");
                        returnValue= df.format(cell.getNumericCellValue());
                    }
                    break;
                case Cell.CELL_TYPE_STRING:    //字符串
                    returnValue = cell.getRichStringCellValue().getString();
                    break;

                case Cell.CELL_TYPE_BOOLEAN:   //布尔

                    Boolean booleanValue = cell.getBooleanCellValue();

                    returnValue = booleanValue.toString();

                    break;

                case Cell.CELL_TYPE_BLANK:     // 空值

                    returnValue = "";

                    break;

                case Cell.CELL_TYPE_FORMULA:   // 公式

                    returnValue = cell.getCellFormula();

                    break;

                case Cell.CELL_TYPE_ERROR:     // 故障

                    returnValue = null;

                    break;

                default:

                    System.out.println("未知类型");

                    break;
            }
        }
        System.out.println("转换后:" + returnValue);
        return returnValue;
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值