溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

POI導(dǎo)出之Excel如何實(shí)現(xiàn)單元格的背景色填充

發(fā)布時(shí)間:2023-03-07 13:54:11 來(lái)源:億速云 閱讀:164 作者:iii 欄目:開(kāi)發(fā)技術(shù)

本篇內(nèi)容介紹了“POI導(dǎo)出之Excel如何實(shí)現(xiàn)單元格的背景色填充”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

    POI導(dǎo)出Excel設(shè)置單元格背景色

    使用poi提供的背景色

    //1.獲取Excel工作簿對(duì)象
    HSSFWorkbook wb = new HSSFWorkbook();
    //2.獲取sheet對(duì)象
    HSSFSheet sheet = wb.createSheet("sheet名");
    //2.創(chuàng)建單元格樣式對(duì)象
    HSSFCellStyle cellStyle = wb.createCellStyle();
    //3.添加常用樣式
    cellStyle.setWrapText(true);//設(shè)置自動(dòng)換行
    cellStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);//水平居中顯示
    cellStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);//垂直居中
    cellStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN);//下邊框
    cellStyle.setBorderLeft(HSSFCellStyle.BORDER_THIN);//左邊框
    cellStyle.setBorderTop(HSSFCellStyle.BORDER_THIN);//上邊框
    cellStyle.setBorderRight(HSSFCellStyle.BORDER_THIN);//右邊框
    //4.設(shè)置單元格背景色
    cellStyle.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);//填充單元格
    cellStyle.setFillForegroundColor(HSSFColor.RED.index);//設(shè)置單元格背景色
    //5.創(chuàng)建單元格并為單元格添加樣式對(duì)象
    /*5.1在創(chuàng)建單元格前需要先創(chuàng)建行 */
    HSSFRow row = sheet.createRow(0);//這里就默認(rèn)創(chuàng)建第一行
    HSSFCell cell = row.createCell(0);//默認(rèn)創(chuàng)建第一個(gè)單元格
    cell.setCellStyle(cellStyle); //設(shè)置單元格樣式
    cell.setCellType(HSSFCell.CELL_TYPE_STRING);//設(shè)置單元格內(nèi)容的類型
    cell.setCellValue("Hello World!");//設(shè)置單元格內(nèi)容

    使用自定義的背景色

    使用自定義的背景色,需要額外的添加一些操作。

    這里以16進(jìn)制的顏色為例,演示如何從16進(jìn)制的顏色一步步設(shè)為單元格的背景色。

    自定義顏色方法

    下述方法的作用簡(jiǎn)單來(lái)說(shuō)就是:根據(jù)傳入的HSSFPalette 畫(huà)板對(duì)象和color16進(jìn)制的顏色字符串,先轉(zhuǎn)成RGB碼,然后使用HSSFPalette畫(huà)板對(duì)象和index下標(biāo)重新設(shè)置對(duì)應(yīng)下標(biāo)的顏色,并對(duì)HSSFCellStyle單元格樣式進(jìn)行顏色的設(shè)置。

    強(qiáng)調(diào)說(shuō)明:

    (1)在進(jìn)行顏色重新生成的時(shí)候,即如下代碼。需要注意index下標(biāo)的范圍是在[8,64],設(shè)置成其他數(shù)字的下標(biāo),無(wú)效!

    palette.setColorAtIndex((short)(index), (byte) r, (byte) g, (byte) b);

    (2)根據(jù)下標(biāo)和RGB碼重新設(shè)置完顏色后,后續(xù)需要使用的話只需要根據(jù)下標(biāo)設(shè)置單元格顏色即可。

    hssfCellStyle.setFillForegroundColor((short)(index));
    /**
    	 * 設(shè)置自定義顏色
    	 * @param palette   excel工作空間的繪畫(huà)板
    	 * @param hssfCellStyle   cell的單元格樣式對(duì)象
    	 * @param color  16進(jìn)制顏色字符串【如:#C1232B】
    	 * @param index  下標(biāo),范圍在[8~64]
    	 */
    	public static  void setCellColor(HSSFPalette palette,HSSFCellStyle hssfCellStyle,String color,int index){
    		//轉(zhuǎn)為RGB碼
    		int r = Integer.parseInt((color.substring(0,2)),16);   //轉(zhuǎn)為16進(jìn)制
    		int g = Integer.parseInt((color.substring(2,4)),16);
    		int b = Integer.parseInt((color.substring(4,6)),16);
    		//這里index是索引
    		palette.setColorAtIndex((short)(index), (byte) r, (byte) g, (byte) b);
    		hssfCellStyle.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND); 
    		hssfCellStyle.setFillForegroundColor((short)(index));
    	}

    POI設(shè)置Excel單元格背景色(setFillForegroundColor與setFillPattern使用)

    使用Java開(kāi)發(fā)信息系統(tǒng)項(xiàng)目,項(xiàng)目中往往會(huì)涉及到報(bào)表管理部分,而Excel表格首當(dāng)其沖稱為最合適的選擇,但是對(duì)單元格操作時(shí)對(duì)于設(shè)置單元格的背景顏色卻很少提及,本文旨在方便單元格背景顏色設(shè)計(jì)。

    操作:

    至于冗長(zhǎng)的創(chuàng)建表格表格設(shè)置的代碼相信大家都已經(jīng)了解。直接進(jìn)行單元格背景顏色設(shè)計(jì)。

    // 創(chuàng)建一個(gè) workbook 對(duì)象 
    Workbook workbook = new XSSFWorkbook();
            // 創(chuàng)建一個(gè) sheet
            Sheet sheet = workbook.createSheet();
            //創(chuàng)建一行
            Row row = sheet.createRow((short) 1);
            ellStyle style = workbook.createCellStyle();
            //關(guān)鍵點(diǎn) IndexedColors.AQUA.getIndex() 對(duì)應(yīng)顏色
            style.setFillForegroundColor(***IndexedColors.AQUA.getIndex()***);
            style.setFillPattern(CellStyle.SOLID_FOREGROUND);
            Cell cell = row.createCell((short) 1);
            cell.setCellValue("X1");
            cell.setCellStyle(style);

    顏色與代碼參考:

    POI導(dǎo)出之Excel如何實(shí)現(xiàn)單元格的背景色填充

    上面的單元格顏色對(duì)應(yīng)下面的英語(yǔ)顏色表示,從X1-X49 按順序?qū)?yīng);

    將下面對(duì)應(yīng)的code填入上述代碼加粗斜體位置即可。

    IndexedColors.AQUA.getIndex()
    IndexedColors.AUTOMATIC.getIndex()
    IndexedColors.BLUE.getIndex()
    IndexedColors.BLUE_GREY.getIndex()
    IndexedColors.BRIGHT_GREEN.getIndex()
    IndexedColors.BROWN.getIndex()
    IndexedColors.CORAL.getIndex()
    IndexedColors.CORNFLOWER_BLUE.getIndex()
    IndexedColors.DARK_BLUE.getIndex()
    IndexedColors.DARK_GREEN.getIndex()
    IndexedColors.DARK_RED.getIndex()
    IndexedColors.DARK_TEAL.getIndex()
    IndexedColors.DARK_YELLOW.getIndex()
    IndexedColors.GOLD.getIndex()
    IndexedColors.GREEN.getIndex()
    IndexedColors.GREY_25_PERCENT.getIndex()
    IndexedColors.GREY_40_PERCENT.getIndex()
    IndexedColors.GREY_50_PERCENT.getIndex()
    IndexedColors.GREY_80_PERCENT.getIndex()
    IndexedColors.INDIGO.getIndex()
    IndexedColors.LAVENDER.getIndex()
    IndexedColors.LEMON_CHIFFON.getIndex()
    IndexedColors.LIGHT_BLUE.getIndex()
    IndexedColors.LEMON_CHIFFON.getIndex()
    IndexedColors.LIGHT_BLUE.getIndex()
    IndexedColors.LIGHT_CORNFLOWER_BLUE.getIndex()
    IndexedColors.LIGHT_GREEN.getIndex()
    IndexedColors.LIGHT_ORANGE.getIndex()
    IndexedColors.LIGHT_TURQUOISE.getIndex()
    IndexedColors.LIGHT_YELLOW.getIndex()
    IndexedColors.LIME.getIndex()
    IndexedColors.MAROON.getIndex()
    IndexedColors.OLIVE_GREEN.getIndex()
    IndexedColors.ORANGE.getIndex()
    IndexedColors.ORCHID.getIndex()
    IndexedColors.PALE_BLUE.getIndex()
    IndexedColors.PINK.getIndex()
    IndexedColors.PLUM.getIndex()
    IndexedColors.RED.getIndex()
    IndexedColors.ROSE.getIndex()
    IndexedColors.ROYAL_BLUE.getIndex()
    IndexedColors.SEA_GREEN.getIndex()
    IndexedColors.SKY_BLUE.getIndex()
    IndexedColors.TAN.getIndex()
    IndexedColors.TEAL.getIndex()
    IndexedColors.TURQUOISE.getIndex()
    IndexedColors.VIOLET.getIndex()
    IndexedColors.WHITE.getIndex()
    IndexedColors.YELLOW.getIndex()

    “POI導(dǎo)出之Excel如何實(shí)現(xiàn)單元格的背景色填充”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

    向AI問(wèn)一下細(xì)節(jié)

    免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

    AI