// 创建对Excel工作簿文件的引用
HSSFWorkbook workbook = new HSSFWorkbook(new FileInputStream(path));
HSSFCellStyle cellStyle =workbook.createCellStyle();
cellStyle.setFillBackgroundColor(HSSFColor.RED.index);
cellStyle.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
.....................................
cell.setCellStyle(cellStyle);
//读取excle文件, 校验单元格数据,如果格式不对。就需要修改单元格样式。