如何在apache poi 3.9中读取单元格中每个文本的字体颜色

时间:2013-12-17 06:00:14

标签: java excel apache-poi

[单元格中的文字]
ABC(粉红色)
DEF(黑色)
GHI(红色)

我必须像上面一样检查单元格中文本的字体颜色。 (对不起,我无法上传图片) 第一排的颜色是粉红色。 下一行的颜色是黑色和红色。

如您所见,我无法使用getCellStyle()方法,因为该单元格有3个字体属性。

我输入如下的源代码。

XSSFCell cell = row.getCell(0);

XSSFRichTextString value = cell.getRichStringCellValue();

String[] info = value.getString().split("\n");

for(int i = 0; i < info.length; i++) {

int index = value.getString().indexOf(info);
System.out.println(value.getFontAtIndex(index).getColor());

}

但是,我没有得到正确的结果。 我想知道如何获取每个文本的字体信息。

请告诉我你的好建议。 非常感谢。 祝你有个美好的一天!

1 个答案:

答案 0 :(得分:0)

尝试以下方法:它会起作用

   public static void differentColorInSingleCell(){
    Workbook wb = new HSSFWorkbook();
    Sheet sheet = wb.createSheet("Sheet1");
    Cell cell = sheet.createRow(0).createCell(0);
    Font Font1 = wb.createFont();
    Font1.setColor(HSSFColor.RED.index);
    Font Font2 = wb.createFont();
    Font2.setColor(HSSFColor.BLUE.index);
    CellStyle style = wb.createCellStyle();
    style.setFont(Font1);
    cell.setCellStyle(style);
    RichTextString richString = new HSSFRichTextString("RED, BLUE");
    richString.applyFont(4, 9, Font2);
    cell.setCellValue(richString);
    //Write the file Now
}