HSSFCellStyle style = workbook.createCellStyle()
// 设置这些样式
style.setFillForegroundColor(HSSFColor.WHITE.index)
style.setFillPattern(FillPatternType.SOLID_FOREGROUND)
style.setBorderBottom(BorderStyle.THIN)
style.setBorderLeft(BorderStyle.THIN)
style.setBorderRight(BorderStyle.THIN)
style.setBorderTop(BorderStyle.THIN)
style.setAlignment(HorizontalAlignment.CENTER)
你需要先判断value的类型,然后再经过相应的处理后,再获取和使用它。具体 value 的类型:
Cell.CELL_TYPE_STRING
Cell.CELL_TYPE_NUMERIC
Cell.CELL_TYPE_FORMULA
Cell.CELL_TYPE_BOOLEAN
Cell.CELL_TYPE_BLANK
Cell.CELL_TYPE_ERROR
希望对你有帮助。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)