java poi 获取单元格值时间
2018-12-06 07:34:27来源:博客园 阅读 ()
完整帮助类:JAVA poi 帮助类
/* * poi特殊日期格式:数字格式化成-yyyy年MM月dd日,格式 * */ private static ArrayList<String> PoiDateList = new ArrayList<String>() { { add("年"); add("月"); add("日"); } }; /// <summary> /// 获取XSSFRow的值(全部统一转成字符串) /// </summary> /// <param name="row"></param> /// <param name="index"></param> /// <returns></returns> public static String GetValue(Row row, int index) { Cell rowCell = row.getCell(index); return rowCell == null ? "" : GetValueByCellStyle(rowCell, rowCell.getCellType()); } /// <summary> /// 根据单元格的类型获取单元格的值 /// </summary> /// <param name="rowCell"></param> /// <param name="type"></param> /// <returns></returns> public static String GetValueByCellStyle(Cell rowCell, int rowCellType) { String value = ""; switch (rowCellType) { case Cell.CELL_TYPE_STRING: value = rowCell.getStringCellValue(); break; case Cell.CELL_TYPE_NUMERIC: // 获取单元格值的格式化信息 String dataFormat = rowCell.getCellStyle().getDataFormatString(); // 判断格式化信息中是否存在:年月日 AtomicReference<Boolean> isDate = new AtomicReference<>(false); if (!StringHelper.IsNullOrWhiteSpace(dataFormat)) PoiDateList.forEach(x -> isDate.set(isDate.get() || dataFormat.contains(x))); if (DateUtil.isCellDateFormatted(rowCell)) { value = new SimpleDateFormat("yyyy-MM-dd").format(DateUtil.getJavaDate(rowCell.getNumericCellValue())); } else if (DateUtil.isCellInternalDateFormatted(rowCell)) { value = new SimpleDateFormat("yyyy-MM-dd").format(DateUtil.getJavaDate(rowCell.getNumericCellValue())); } //有些情况,时间搓?数字格式化显示为时间,不属于上面两种时间格式 else if (isDate.get()) { value = new SimpleDateFormat("yyyy-MM-dd").format(rowCell.getDateCellValue()); } //有些情况,时间搓?数字格式化显示为时间,不属于上面两种时间格式 else if (dataFormat == null) { value = new SimpleDateFormat("yyyy-MM-dd").format(DateUtil.getJavaDate(rowCell.getNumericCellValue())); } else { if (StringHelper.IsNullOrWhiteSpace(dataFormat)) { value = String.valueOf(rowCell.getNumericCellValue()); } else { if (rowCell.getCellStyle().getDataFormatString().contains("$")) { value = "$" + rowCell.getNumericCellValue(); } else if (rowCell.getCellStyle().getDataFormatString().contains("¥")) { value = "¥" + rowCell.getNumericCellValue(); } else if (rowCell.getCellStyle().getDataFormatString().contains("¥")) { value = "¥" + rowCell.getNumericCellValue(); } else if (rowCell.getCellStyle().getDataFormatString().contains("标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:Java定时清理过期文件
下一篇:序列化和反序列化
- 国外程序员整理的Java资源大全(全部是干货) 2020-06-12
- 2020年深圳中国平安各部门Java中级面试真题合集(附答案) 2020-06-11
- 2020年java就业前景 2020-06-11
- 04.Java基础语法 2020-06-11
- Java--反射(框架设计的灵魂)案例 2020-06-11
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash