在apache-poi的新版本中,可以使用CellStyle来为单个单元格设置Excel单元格前景颜色。下面是具体的步骤:
下面是一个示例代码:
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class ExcelColorExample {
public static void main(String[] args) {
Workbook workbook = new XSSFWorkbook();
Sheet sheet = workbook.createSheet("Sheet1");
Row row = sheet.createRow(0);
Cell cell = row.createCell(0);
CellStyle cellStyle = workbook.createCellStyle();
cellStyle.setFillForegroundColor(IndexedColors.YELLOW.getIndex());
cellStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
cell.setCellStyle(cellStyle);
try {
workbook.write(new FileOutputStream("example.xlsx"));
workbook.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
在这个示例中,我们创建了一个Workbook对象,然后创建了一个Sheet对象和一个Row对象,接着创建了一个Cell对象。然后,我们使用createCellStyle()方法创建了一个CellStyle对象,并使用setFillForegroundColor()方法设置了前景颜色为黄色,使用setFillPattern()方法设置了填充模式为实心。最后,我们使用setCellStyle()方法将CellStyle对象应用到单元格上,并将数据写入到Excel文件中。
腾讯云相关产品和产品介绍链接地址:
请注意,以上链接仅供参考,具体产品选择应根据实际需求和情况进行。
领取专属 10元无门槛券
手把手带您无忧上云