Tag: 调色板

Apache POI 3.9无法获得HSSFPalette

我正在使用Apache poi 3.9。 我需要在我的Excel中有一个自定义的颜色。 在Apache文档和其他一些build议有一个代码: Workbook wb = new HSSFWorkbook(); HSSFPalette palette = wb.getCustomPalette(); 但工作簿不具有getCustomPalette()方法。 请帮我找出如何在单元格上定制颜色 谢谢

使用findSimilarColor设置Excel文件的背景

我在我的java代码中使用findSimilarColor有一个小问题。 我已经阅读了一些从帮助我到下面的代码的计算器的文章。 HSSFCellStyle style = wb.createCellStyle(); HSSFPalette palette = wb.getCustomPalette(); // get the color which most closely matches the color you want to use HSSFColor myColor = palette.findSimilarColor(226, 0, 116); //java don't recognize this color // get the palette index of that color short palIndex = myColor.getIndex(); // code to get the style for the […]