POI excel 乙個單元格設定多種文字格式

2021-09-12 15:45:25 字數 588 閱讀 8457

//定義字型

hssffont redfont = (hssffont) workbook.createfont();

redfont.setcolor(hssfcolor.red.index);// 紅色

hssffont bluefont = (hssffont) workbook.createfont();

redfont.setcolor(hssfcolor.blue.index);// 藍色

//建立乙個單元格

hssfcell hssfcell = row.createcell(idx);

//建立富文字字串,內容為:hello,world!

hssfrichtextstring richstring = new hssfrichtextstring( "hello, world!" );

//對"hello,"設定redfont字型

//對"world!"設定bluefont字型(6:開始位置,13:結束位置)

//將富文字字串設定到單元格中

hssfcell.setcellvalue( richstring );

引用(插入)乙個單元格到另乙個單元格

引用 插入 簡稱引插。分為以下幾種情況 在sheet1中引插,引插結果也放在sheet1中 在sheet1中引插,引插結果也放在sheet2中 在excel1中引插,引插結果放在excel2中。3又分為 excel1和excel2在同一目錄 不過以上的情況區別不大,一通百通。話不多說,開幹。其實這個...

幾個單元格的內容如何合併到乙個單元格

實現方法 1 選中指定單元格,在單元格裡輸入公式 單元格 單元格 按下鍵盤上的 回車鍵 即可。2 選中指定單元格,在單元格中輸入公式 concatenate 單元格內容需要合併的資料區域 即可。本教程操作環境 windows7系統 microsoft office excel2010版 dell g...

poi單元格設定

poi中可能會用到一些需要設定excel單元格格式的操作小結 先獲取工作薄物件 hssfworkbook wb new hssfworkbook hssfsheet sheet wb.createsheet hssfcellstyle setborder wb.createcellstyle 一 設...