ヘッダーのフォントの色を白と塗りつぶしに変更するにはどうすればよいですか?これらは私が使用していたクラスです:テキストの色と塗りつぶしを変更するには
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)
XSSFCellStyleはどのjarファイルにありますか?これは私が必要なもののように見えます! –
私はapache poi 3.9を使用しています。 XSSFCellStyleはorg.apache.poi.xssf.usermodel.XSSFCellStyleにあります – Sankumarsingh
ドキュメントの先頭にorg.apache.poi.xssf.usermodel.XSSFCellStyleをインポートしますが、「org.apache.poiクラスを解決できません。 .xssf.usermodel.XSSFCellStyle "というメッセージが表示されます。私はそれがないということですか? –