내가 HSSFWorkbook에 대한 셀 스타일을 만들 회색 :HSSF 아파치 셀 스타일은 모든 세포는
private static HSSFCellStyle createNewColorCellStyle(Map<Color, HSSFCellStyle> cellStylesMap, HSSFWorkbook workbook, Color color) {
if (cellStylesMap.get(color) == null) {
HSSFCellStyle cellStyle = workbook.createCellStyle();
HSSFColor hssfColor = setColor(workbook, (byte) color.getRed(), (byte) color.getGreen(), (byte) color.getBlue());
cellStyle.setFillForegroundColor(hssfColor.getIndex());
cellStyle.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
cellStyle.setBorderTop(CellStyle.BORDER_THIN);
cellStyle.setBorderLeft(CellStyle.BORDER_THIN);
cellStyle.setBorderBottom(CellStyle.BORDER_THIN);
cellStyle.setBorderRight(CellStyle.BORDER_THIN);
cellStylesMap.put(color, cellStyle);
}
return cellStylesMap.get(color);
}
내가 셀 스타일
private static HSSFColor setColor(HSSFWorkbook workbook, byte r, byte g, byte b) {
HSSFPalette palette = workbook.getCustomPalette();
HSSFColor hssfColor = null;
try {
hssfColor = palette.findColor(r, g, b);
if (hssfColor == null) {
palette.setColorAtIndex(HSSFColor.BLUE_GREY.index, r, g, b);
HSSFColor hssfColor = palette.getColor(HSSFColor.BLUE_GREY.index);
}
} catch (Exception e) {
LOGGER.info(String.valueOf(e));
}
return hssfColor;
}
에 색상을 설정하는 기능이있다 그리고 그에서 사용 방법, 여기서 내 스타일을 HSSFCell로 설정했습니다. 내지도 스타일을 사용하는 기능입니다. 루프에서 행과 셀을 만듭니다.
void excell(Path path, JTable table) {
try {
HSSFWorkbook fWorkbook = new HSSFWorkbook();
HSSFSheet fSheet = fWorkbook.createSheet("the sheet");
Map<Color, HSSFCellStyle> cellStylesMap = new HashMap<>();
TableModel model = table.getModel();
for (int i = 0; i < model.getRowCount(); i++) {
HSSFRow fRow = fSheet.createRow((short) i);
for (int j = 0; j < table.getColumnModel().getColumnCount(); j++) {
HSSFCell cell = fRow.createCell(j);
cell.setCellValue(model.getValueAt(i, j));
Component c = table.getCellRenderer(i, j).getTableCellRendererComponent(table, cell, table.isCellSelected(i, j), table.hasFocus(), i, j);
Color color = c.getBackground() != null ? c.getBackground() : table.getBackground();
cell.setCellStyle(createNewColorCellStyle(cellStylesMap, fWorkbook, color));
}
}
}
FileOutputStream fileOutputStream;
fileOutputStream = new FileOutputStream(path.toString());
BufferedOutputStream bos = new BufferedOutputStream(fileOutputStream);
fWorkbook.write(bos);
bos.close();
fileOutputStream.close();
} catch (Exception e) {
e.printStackTrace();
}
}
그리고 내 모든 셀은 하나의 색입니다. 기계에 따라 색상이 다릅니다. 어떤 오류가 있습니까? 왜 모든 색상이 탁월합니까? 나는 내가 뭘 잘못했는지 이해하지 못한다. 감사합니다. .
워크 북 및 셀을 작성하는 방법에 대한 간략하지만 완전한 버전을 제공해주십시오. – JensS
@JenS - 내 게시물을 편집했습니다. –