Apache POI Excel 单元格颜色
Apache POI 允许我们在背景和前景中设置单个单元格的颜色。为此,它提供了帮助设置单元格颜色的方法。
在以下示例中,我们将创建两个单元格并分别为背景和前景填充颜色。请参阅示例。
Apache POI Excel 单元格颜色示例
package com.yiidian;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.*;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
public class ColorExample {
public static void main(String[] args) throws FileNotFoundException, IOException {
try (OutputStream fileOut = new FileOutputStream("yiidian.xls")) {
Workbook wb = new HSSFWorkbook();
Sheet sheet = wb.createSheet("Sheet");
Row row = sheet.createRow(1);
CellStyle style = wb.createCellStyle();
// Setting Background color
style.setFillBackgroundColor(IndexedColors.GREEN.getIndex());
style.setFillPattern(CellStyle.BIG_SPOTS);
Cell cell = row.createCell(1);
cell.setCellValue("一点教程网");
cell.setCellStyle(style);
// Setting Foreground Color
style = wb.createCellStyle();
style.setFillForegroundColor(IndexedColors.BLUE.getIndex());
style.setFillPattern(CellStyle.SOLID_FOREGROUND);
cell = row.createCell(2);
cell.setCellValue("技术创造梦想");
cell.setCellStyle(style);
wb.write(fileOut);
}catch(Exception e) {
System.out.println(e.getMessage());
}
}
}
输出结果为:
热门文章
优秀文章