如何使用apache poi更改excel表单相同单元格中的特定文本颜色?

时间:2013-03-17 02:13:12

标签: java excel apache-poi

有没有人知道如何在excel中更改单元格特定文本的颜色。 我正在使用apache poi,我可以找到改变整个单元格的文本颜色。但我只想要一个特定的文字。

例如:Cell A1有Hello World 我希望“Hello”为蓝色,“World”为绿色。 我该怎么做?

2 个答案:

答案 0 :(得分:12)

关键是使用HSSFRichTextString对象来设置单元格的值。该对象有一个applyFont方法,它接受startingIndex,endingIndex和Font。因此,您可以创建具有所需颜色的字体,然后使用applyFont()将它们应用于单元格值的某些部分。

以下是我拼凑在一起的一些示例代码(完全未经测试):

// Set up a rudimentary worksheet with a cell in it
HSSFWorkbook wb = new HSSFWorkbook();
HSSFSheet sheet = wb.createSheet(“sheet1”);
HSSFRow row = sheet.createRow(0);
HSSFCell cell = row.createCell(0);

// Set up fonts
HSSFFont blueFont = workbook.createFont();
blueFont.setColor(HSSFColor.BLUE.index);

HSSFFont greenFont = workbook.createFont();
greenFont.setColor(HSSFColor.GREEN.index);

// create a cell style and assign the first font to it
HSSFCellStyle style = workbook.createCellStyle();
style.setFont(blueFont);

// assign the style to the cell
cell.setCellStyle(style);

// override the parts of the text that you want to
// color differently by applying a different font.
HSSFRichTextString richString = new HSSFRichTextString("Hello, World!");
richString.applyFont(6, 13, greenFont);
cell.setCellValue(richString);

答案 1 :(得分:-1)

首先创建一个样式

//////////////////////Excel Header Style/////////////////////////   
        HSSFCellStyle headerlabelcs = wb.createCellStyle();
        headerlabelcs.setFillForegroundColor(HSSFColor.PALE_BLUE.index);
        headerlabelcs.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
        headerlabelcs.setBorderLeft((short)1);
        headerlabelcs.setBorderRight((short)1);

        HSSFFont headerlabelfont = wb.createFont();
        headerlabelfont.setFontHeightInPoints((short)12);
        headerlabelfont.setFontName("Calibri");
        headerlabelfont.setColor(HSSFColor.BLACK.index);
        headerlabelfont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
        headerlabelcs.setFont(headerlabelfont); 
                //////////////////////Excel Header Style/////////////////////////   

添加然后此行将添加到您的代码中

sheet.getRow(rowIndex).getCell(0).setCellStyle(headerlabelcs);