首页 > 代码库 > POI 身份证号码 手机号 日期值的处理方式
POI 身份证号码 手机号 日期值的处理方式
1 private static SimpleDateFormat dateformat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 2 3 /** 4 * 获取单元格的值 5 * 6 * @param cell 7 * @return 8 */ 9 public static String getCellValue(Cell cell) { 10 DecimalFormat df = new DecimalFormat("#"); 11 if (cell == null) 12 return ""; 13 14 if (cell.getCellType() == Cell.CELL_TYPE_STRING) { 15 return cell.getStringCellValue(); 16 } else if (cell.getCellType() == Cell.CELL_TYPE_BOOLEAN) { 17 return String.valueOf(cell.getBooleanCellValue()); 18 } else if (cell.getCellType() == Cell.CELL_TYPE_FORMULA) { 19 return cell.getCellFormula(); 20 } else if (cell.getCellType() == Cell.CELL_TYPE_NUMERIC) { 21 if (HSSFDateUtil.isCellDateFormatted(cell)) { //判断是日期类型 22 Date dt = HSSFDateUtil.getJavaDate(cell.getNumericCellValue());//获取成DATE类型 23 return dateformat.format(dt); 24 }else{ //转化电话号码和身份证号码为字符串 25 return String.valueOf(df.format(cell.getNumericCellValue())); 26 } 27 28 29 30 } 31 return ""; 32 }
POI 身份证号码 手机号 日期值的处理方式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。