我正在寻找一种解决方案,将样式应用于一系列单元格,而不必在其上循环。
尝试了在stackoverflow上找到的其他解决方案,但没有一个能够正常工作。 例如,这对我不起作用:
CellRangeAddress region = CellRangeAddress.valueOf("A1:B2");
short borderStyle = CellStyle.BORDER_THIN;
RegionUtil.setBorderBottom(borderStyle, region, activeSheet, excelWorkbook);
RegionUtil.setBorderTop(borderStyle, region, activeSheet, excelWorkbook);
RegionUtil.setBorderLeft(borderStyle, region, activeSheet, excelWorkbook);
RegionUtil.setBorderRight(borderStyle, region, activeSheet, excelWorkbook);
它在选区的外边缘添加边框,而不是内部的单元格。 我想为范围内的每个单元格设置边框。如果没有循环,这甚至可能吗?
由于
答案 0 :(得分:3)
我不认为您可以将样式应用于Range单元格中的所有单元格而不将其单独应用于单个单元格。
尝试循环遍历每个单元格并应用所有边框。
以下是一个可能对您有帮助的示例:
CellStyle cellStyle = workbook.createCellStyle();
cellStyle.setBorderLeft(CellStyle.BORDER_THIN);
cellStyle.setBorderRight(CellStyle.BORDER_THIN);
cellStyle.setBorderTop(CellStyle.BORDER_THIN);
cellStyle.setBorderBottom(CellStyle.BORDER_THIN);
for(int i=region.getFirstRow();i<region.getLastRow();i++){
Row row = sheet.getRow(i);
for(int j=region.getFirstColumn();j<region.getLastColumn();j++){
Cell cell = row.getCell(j);
cell.setCellStyle(cellStyle);
}
}