gpt4 book ai didi

java - POI CellStyle 似乎未应用

转载 作者:行者123 更新时间:2023-12-02 01:12:30 26 4
gpt4 key购买 nike

请注意:我看到一个非常提出的类似问题here但这个答案并不是很确定(我无法辨别实际的修复是什么)。如果有人可以向我解释该问题/答案如何解决我当前的问题,我会很乐意自己删除这个问题!只是请不要将 DV/CV 视为“骗子”,而是请帮助我理解所提供的解决方案!

<小时/>

这里是 Java 8 和 POI 4.1.x。我正在尝试编写一些 Java/POI 代码来生成样式/格式化的 Excel 文件作为输出。我创建了this GitHub project这完美地重现了我所看到的问题。如果您确实想要,您可以查看它并通过 ./gradlew clean build ShadowJar && java -jar build/libs/hello-windows 运行它(它是一个 Swing 应用程序)。 jar,但是 TLDR;其中:

Workbook workbook = new XSSFWorkbook();
Sheet sheet = workbook.createSheet("SOME_SHEET");

Font headerFont = workbook.createFont();
headerFont.setBold(true);

CellStyle cellStyle = workbook.createCellStyle();
cellStyle.setFont(headerFont);
cellStyle.setFillBackgroundColor(IndexedColors.YELLOW.getIndex());
cellStyle.setAlignment(HorizontalAlignment.CENTER);

int rowNum = 0;

Row headerRow = sheet.createRow(rowNum);
headerRow.setRowStyle(cellStyle);

Cell partNumberHeaderCell = headerRow.createCell(0);
partNumberHeaderCell.setCellValue("Part #");
partNumberHeaderCell.setCellStyle(cellStyle);

Cell partDescriptionHeaderCell = headerRow.createCell(1);
partDescriptionHeaderCell.setCellStyle(cellStyle);
partDescriptionHeaderCell.setCellValue("Description");

Cell partPriceHeaderCell = headerRow.createCell(2);
partPriceHeaderCell.setCellStyle(cellStyle);
partPriceHeaderCell.setCellValue("Price");

Cell manufacturerHeaderCell = headerRow.createCell(3);
manufacturerHeaderCell.setCellStyle(cellStyle);
manufacturerHeaderCell.setCellValue("Make");

rowNum++;

Row nextRow = sheet.createRow(rowNum);

nextRow.createCell(0).setCellValue(uuid);
nextRow.createCell(1).setCellValue("Some Part");
nextRow.createCell(2).setCellValue(2.99);
nextRow.createCell(3).setCellValue("ACME");

FileOutputStream fos = null;
try {
fos = new FileOutputStream("acme.xlsx");

workbook.write(fos);

workbook.close();
} catch (IOException ex) {
log.error(ExceptionUtils.getStackTrace(ex));
}

当此代码运行时,它会生成一个 Excel 文件,其中正确包含我的所有数据(标题行和“数据”行),但是所有格式和单元格样式似乎都被忽略:

enter image description here

在上面的屏幕截图中,您可以看到标题根本没有样式,但我相信我的样式正确:

CellStyle cellStyle = workbook.createCellStyle();
cellStyle.setFont(headerFont);
cellStyle.setFillBackgroundColor(IndexedColors.YELLOW.getIndex());
cellStyle.setAlignment(HorizontalAlignment.CENTER);

如果我的代码正确,那么我应该看到一个 header :

  1. 有黄色背景;和
  2. 水平居中/对齐;和
  3. 加粗

有人能发现我哪里出了问题吗?

最佳答案

不清楚为什么粗体字体不适合你,但对我来说却适用。

但是单元格内部的问题是 Excel 单元格内部具有图案填充。填充背景色是图案后面的颜色,填充前景色是图案的颜色。实心填充单元内部必须具有实心图案,并具有所需的填充前景色集。

另请参阅Busy Developers' Guide to HSSF and XSSF Features .

...
CellStyle cellStyle = workbook.createCellStyle();
cellStyle.setFont(headerFont);
//cellStyle.setFillBackgroundColor(IndexedColors.YELLOW.getIndex());
cellStyle.setFillForegroundColor(IndexedColors.YELLOW.getIndex());
cellStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
cellStyle.setAlignment(HorizontalAlignment.CENTER);
...

让我们看一个完整的示例,它将您的数据存储在 Excel 工作表中:

import java.io.FileOutputStream;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

class CreateExcelCellStyle {

public static void main(String[] args) throws Exception {

try (Workbook workbook = new XSSFWorkbook();
FileOutputStream fileout = new FileOutputStream("./Excel.xlsx") ) {

Font headerFont = workbook.createFont();
headerFont.setBold(true);

CellStyle headerStyle = workbook.createCellStyle();
headerStyle.setFont(headerFont);
headerStyle.setFillForegroundColor(IndexedColors.YELLOW.getIndex());
headerStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
headerStyle.setAlignment(HorizontalAlignment.CENTER);

Object[][] data = new Object[][] {
new Object[] {"Part #", "Description", "Price", "Make"},
new Object[] {"cb82c02", "Some Part", 2.99, "ACME"}
};

Sheet sheet = workbook.createSheet();

for (int r = 0; r < data.length; r++) {
Row row = sheet.createRow(r);
for (int c = 0; c < data[0].length; c++) {
Cell cell = row.createCell(c);
if (r==0) cell.setCellStyle(headerStyle);
Object content = data[r][c];
if (content instanceof String) {
cell.setCellValue((String)content);
} else if (content instanceof Double) {
cell.setCellValue((Double)content);
}
}
}

for (int c = 0; c < data[0].length; c++) {
sheet.autoSizeColumn(c);
}

workbook.write(fileout);
}

}
}

结果:

enter image description here

关于java - POI CellStyle 似乎未应用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59162122/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com