java poi 设置单元格颜色_POI 设置导出表中单元格颜色

import java.io.File;

import java.io.FileNotFoundException;

import java.io.FileOutputStream;

import java.io.IOException;

import org.apache.poi.ss.usermodel.FillPatternType;

import org.apache.poi.xssf.usermodel.XSSFCell;

import org.apache.poi.xssf.usermodel.XSSFCellStyle;

import org.apache.poi.xssf.usermodel.XSSFColor;

import org.apache.poi.xssf.usermodel.XSSFRow;

import org.apache.poi.xssf.usermodel.XSSFSheet;

import org.apache.poi.xssf.usermodel.XSSFWorkbook;

public class TestXls {

/**

* @param args

* @throws IOException

* @throws FileNotFoundException

*/

public static void main(String[] args) throws FileNotFoundException, IOException {

XSSFWorkbook book = new XSSFWorkbook();

XSSFSheet st = book.createSheet();

XSSFCellStyle style = book.createCellStyle();

java.awt.Color clr_red = new java.awt.Color(255,0,0);

XSSFColor xssClr = new XSSFColor(clr_red);

style.setFillForegroundColor(xssClr);

style.setFillPattern(FillPatternType.SOLID_FOREGROUND);

/*style.setFillForegroundColor(IndexedColors.RED1.getIndex());  //网上的这种设置法完全没起效果

style.setFillPattern(FillPatternType.SOLID_FOREGROUND);*/

XSSFRow row = st.createRow(0);

XSSFCell cell = row.createCell(0);

cell.setCellStyle(style);

cell.setCellValue("1");

XSSFCell cell1 = row.createCell(1);

XSSFCellStyle style_gr = book.createCellStyle();

java.awt.Color clr_green = new java.awt.Color(0,255,0);

XSSFColor xssClr_gr = new XSSFColor(clr_green);// 主要用到XSSFColor

style_gr.setFillForegroundColor(xssClr_gr);

style_gr.setFillPattern(FillPatternType.SOLID_FOREGROUND);

cell1.setCellStyle(style_gr);

cell1.setCellValue("2");

File file = new File("c:\\a.xlsx");

book.write(new FileOutputStream(file));

}

}

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值