XSSFCellStyle setFillForegroundColor 和 setFillBackgroundColor 不起作用
XSSFCellStyle setFillForegroundColor and setFillBackgroundColor doesn't work
我尝试使用 setFillForegroundColor 和 setFillBackgroundColor 来更改 excel 文件的单元格颜色。
然而,我失败了,我真的不知道问题出在哪里。我在 google 上搜索了很多小时,仍然找不到正确的颜色设置方法。
以下是我写的代码:
import java.awt.Color;
import java.io.File;
import java.io.FileOutputStream;
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 TestColor {
public static void main(String[] args) {
File f = new File("test.xlsx");
XSSFWorkbook wb = new XSSFWorkbook();
XSSFSheet sheet = wb.createSheet();
XSSFRow row = sheet.createRow(0);
XSSFCell cell = row.createCell(0);
cell.setCellValue("no blue");
// set the color of the cell
XSSFCellStyle style = wb.createCellStyle();
XSSFColor myColor = new XSSFColor(Color.BLUE);
style.setFillForegroundColor(myColor);
style.setFillBackgroundColor(myColor);
cell.setCellStyle(style); // this command seems to fail
try {
FileOutputStream fos = new FileOutputStream(f);
wb.write(fos);
wb.close();
fos.flush();
fos.close();
}catch(Exception e){
e.printStackTrace();
}
}
}
这是最终结果。
如何将单元格的颜色设置为蓝色?
的 poi-bin-3.12-20150511.zip
您可能需要在设置前景色后添加以下行:
style.setFillPattern(CellStyle.SOLID_FOREGROUND);
SetFillPattern 需要 FillPatterType,所以更确切地说:
style.setFillPattern(FillPatternType.SOLID_FOREGROUND)
我尝试使用 setFillForegroundColor 和 setFillBackgroundColor 来更改 excel 文件的单元格颜色。
然而,我失败了,我真的不知道问题出在哪里。我在 google 上搜索了很多小时,仍然找不到正确的颜色设置方法。
以下是我写的代码:
import java.awt.Color;
import java.io.File;
import java.io.FileOutputStream;
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 TestColor {
public static void main(String[] args) {
File f = new File("test.xlsx");
XSSFWorkbook wb = new XSSFWorkbook();
XSSFSheet sheet = wb.createSheet();
XSSFRow row = sheet.createRow(0);
XSSFCell cell = row.createCell(0);
cell.setCellValue("no blue");
// set the color of the cell
XSSFCellStyle style = wb.createCellStyle();
XSSFColor myColor = new XSSFColor(Color.BLUE);
style.setFillForegroundColor(myColor);
style.setFillBackgroundColor(myColor);
cell.setCellStyle(style); // this command seems to fail
try {
FileOutputStream fos = new FileOutputStream(f);
wb.write(fos);
wb.close();
fos.flush();
fos.close();
}catch(Exception e){
e.printStackTrace();
}
}
}
这是最终结果。
如何将单元格的颜色设置为蓝色?
的 poi-bin-3.12-20150511.zip您可能需要在设置前景色后添加以下行:
style.setFillPattern(CellStyle.SOLID_FOREGROUND);
SetFillPattern 需要 FillPatterType,所以更确切地说:
style.setFillPattern(FillPatternType.SOLID_FOREGROUND)