POI操作Excel cell的網線型別

2021-05-21 20:03:29 字數 905 閱讀 9802

poi中的對某個cell單元格設定網線的寫法:

hssfcellstyle style = workbook.createcellstyle();

style.setfillpattern(hssfcellstyle.big_spots);

cell.setcellstyle(style);

具體參考api:http://poi.apache.org/apidocs/org/apache/poi/ss/usermodel/cellstyle.html

網線型別

執行結果

hssfcellstyle.no_fill

hssfcellstyle.solid_foreground

hssfcellstyle.fine_dots

hssfcellstyle.alt_bars

hssfcellstyle.sparse_dots

hssfcellstyle.thick_horz_bands

hssfcellstyle.thick_vert_bands

hssfcellstyle.thick_backward_diag

hssfcellstyle.thick_forward_diag

hssfcellstyle.big_spots

hssfcellstyle.bricks

hssfcellstyle.thin_horz_bands

hssfcellstyle.thin_vert_bands

hssfcellstyle.thin_backward_diag

hssfcellstyle.thin_forward_diag

hssfcellstyle.squares

hssfcellstyle.diamonds

POI操作Excel的封裝

日常辦公,我們使用的最多辦公軟體是microsoft的office,所以,我們開發的系統難免會遇到的乙個功能就是和office互動,所以,某些聰明的人,就開發了相應的功能包,使用我們程式設計師可以非常方便的進行microsoft office格式檔案的讀和寫,該功能包就是poi。對於poi具體某乙個...

使用POI操作Excel

apache的jakata專案poi http poi.apache.org 用來操作excel,並能滿足大部分需要.poi下面有幾個子專案,其中hssf xssf專案 http poi.apache.org spreadsheet index.html 用來實現excel讀寫的.public st...

POI 操作 EXCEL檔案

1.最新的poi工具包 poi 主頁 快速上手使用poi hssf 2 excel 結構 hssfworkbook excell 文件物件介紹 hssfsheet excell的表單 hssfrow excell的行 hssfcell excell的格仔單元 hssffont excell字型 hs...