如何將標題字體顏色更改爲白色並填充綠色?這些是我正在使用的類:如何更改文本顏色和填充顏色
import static org.apache.poi.ss.usermodel.CellStyle.*
import static org.apache.poi.ss.usermodel.IndexedColors.*
import org.apache.poi.hssf.usermodel.*
import org.apache.poi.hssf.usermodel.HSSFWorkbook
import org.apache.poi.ss.usermodel.Cell
import org.apache.poi.ss.usermodel.CellStyle
import org.apache.poi.ss.usermodel.Row
import org.apache.poi.ss.usermodel.Sheet
import org.apache.poi.ss.usermodel.Workbook
import org.apache.poi.ss.usermodel.Font
而這是我相信它將被插入的代碼。
Font headerFont = wb.createFont();
headerFont.setBoldweight(Font.BOLDWEIGHT_BOLD)
CellStyle headerStyle = wb.createCellStyle()
headerStyle.setFont(headerFont)
cellMOPID.setCellStyle(headerStyle)
cellType.setCellStyle(headerStyle)
cellStatus.setCellStyle(headerStyle)
cellState.setCellStyle(headerStyle)
cellStartDate.setCellStyle(headerStyle)
cellEndDate.setCellStyle(headerStyle)
cellDesc.setCellStyle(headerStyle)
哪個jar文件位於XSSFCellStyle中?這看起來像我需要的! –
我使用的是Apache poi 3.9。 XSSFCellStyle位於org.apache.poi.xssf.usermodel.XSSFCellStyle – Sankumarsingh
我列出導入org.apache.poi.xssf.usermodel.XSSFCellStyle在我的文檔的頂部,但我得到一個「無法解析類org.apache.poi .xssf.usermodel.XSSFCellStyle「消息。這是否意味着我沒有? –