首页 > 代码库 > 使用POI 读取 Excel 文件,读取手机号码 变成 1.3471022771E10
使用POI 读取 Excel 文件,读取手机号码 变成 1.3471022771E10
使用POI 读取 Excel 文件,读取手机号码 变成 1.3471022771E10 [问题点数:40分,结帖人xieyongqiu]
收藏
| 楼主发表于: 2010-09-13 17:33:03 |
对我有用[0] 丢个板砖[0] 引用 | 举报 | 管理 回复次数:15 |
| #1 得分:5回复于: 2010-09-13 17:34:34 你要多判断一下,CELL TYPE好像有四种类型的,, |
对我有用[0] 丢个板砖[0] 引用 | 举报 | 管理 |
| #2 得分:0回复于: 2010-09-13 17:41:35 if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) { DateFormat format = new SimpleDateFormat(DateUtil.YYYY_MM_DD); if(HSSFDateUtil.isCellDateFormatted(cell)) { // 是否为日期型 str = format.format(cell.getDateCellValue()); } else { // 是否为数值型 double d = cell.getNumericCellValue(); if (d - (int) d < Double.MIN_VALUE) { // 是否为int型 str = Integer.toString((int) d); } else { System.out.println("double....."); // 是否为double型 str = Double.toString(cell.getNumericCellValue()); } } System.out.println("type=="+cell.getCellType() ); System.out.println("cell=="+str); }else if (cell.getCellType() == HSSFCell.CELL_TYPE_STRING) { str = cell.getRichStringCellValue().getString(); }else if (cell.getCellType() == HSSFCell.CELL_TYPE_FORMULA) { str = cell.getCellFormula(); }else if (cell.getCellType() == HSSFCell.CELL_TYPE_BLANK) { str = " "; }else if (cell.getCellType() == HSSFCell.CELL_TYPE_ERROR) { str = " "; } 这几种 类型 都做判断了 依然还是 1.3471022771E10 |
对我有用[0] 丢个板砖[1] 引用 | 举报 | 管理 |
| #3 得分:0回复于: 2010-09-13 17:51:55 解决了 是一个转换问题 //将被表示成1.3922433397E10的手机号转化为13922433397,不一定是最好的转换方法 DecimalFormat df = new DecimalFormat("#"); System.out.println("type666=="+df.format(cell.getNumericCellValue())); |
使用POI 读取 Excel 文件,读取手机号码 变成 1.3471022771E10
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。