Hello! 欢迎来到小浪资源网!


Java中如何使用Apache POI设置Excel单元格背景色和字体颜色?


Java中如何使用Apache POI设置Excel单元格背景色和字体颜色?

如何在 Java 中设置 excel 单元格背景色?

在 java 中使用 apache poi 库,可以轻松地为 excel 单元格设置背景色。具体步骤如下:

  1. 添加 poi 依赖项:maven 项目的 pom.xml 文件中添加以下内容:

    <dependency>     <groupid>org.apache.poi</groupid>     <artifactid>poi</artifactid>     <version>5.0.0</version> </dependency> <dependency>     <groupid>org.apache.poi</groupid>     <artifactid>poi-ooxml</artifactid>     <version>5.0.0</version> </dependency>
  2. 设置背景色:使用以下代码为单元格设置背景色:

    立即学习Java免费学习笔记(深入)”;

    xssfcellstyle style = workbook.createcellstyle(); style.setfillforegroundcolor(hssfcolor.hssfcolorpredefined.blue.getindex()); style.setfillpattern(fillpatterntype.solid_foreground);

    其中:

    • style 为要设置背景色的单元格样式。
    • setfillforegroundcolor() 方法设置填充色。
    • setfillpattern() 方法设置填充模式,即设置为实色填充。
  3. 设置字体颜色:您可以通过以下代码设置单元格的字体颜色:

    font font = workbook.createfont(); font.setcolor(indexedcolors.white.getindex()); style.setfont(font);

    其中:

    • font 为要设置字体颜色的字体。
    • setcolor() 方法设置字体颜色。

示例代码:

public class Main {     public static void main(String[] args) {         try (XSSFWorkbook workbook = new XSSFWorkbook();              OutputStream out = Files.newOutputStream(Paths.get("workbook.xlsx"))) {             Sheet sheet = workbook.createSheet();             Row row = sheet.createRow((short) 0);             Cell cell = row.createCell((short) 0);             cell.setCellValue("TEST---");              // 创建一个单元格样式             XSSFCellStyle style = workbook.createCellStyle();             cell.setCellStyle(style);              // 为单元格设置蓝色背景             style.setFillForegroundColor(HSSFColor.HSSFColorPredefined.BLUE.getIndex());             style.setFillPattern(FillPatternType.SOLID_FOREGROUND);              // 为字体设置白色             Font font = workbook.createFont();             font.setColor(IndexedColors.WHITE.getIndex());             style.setFont(font);              workbook.write(out);         } catch (IOException e) {             throw new RuntimeException(e);         }     } }

相关阅读