用NPOI創(chuàng)建Excel、合并單元格、設(shè)置單元格樣式、邊框的方法
今天在做項目中,遇到使用代碼生成具有一定樣式的Excel,找了很多資料,最后終于解決了,Excel中格式的設(shè)置,以及單元格的合并等等。下面就介紹下,使用NPOI類庫操作Excel的方法。
1.首先我們先在內(nèi)存中生成一個Excel文件,代碼如下:
HSSFWorkbook book = new HSSFWorkbook();
ISheet sheet = book.CreateSheet("Sheet1");
2.然后在新創(chuàng)建的sheet里面,創(chuàng)建我們的行和列,代碼如下:
IRow row = sheet.CreateRow(index);//index代表多少行
row.HeightInPoints = 35;//行高
ICell cell = row.CreateCell(0);//創(chuàng)建第一列
cell.SetCellValue(“設(shè)置單元格的值”);
3.設(shè)置單元格的樣式已經(jīng)字體大小,邊框,以及合并單元格
(1).創(chuàng)建單元格字體的樣式及大小
/// <summary>
/// 獲取字體樣式
/// </summary>
/// <param name="hssfworkbook">Excel操作類</param>
/// <param name="fontname">字體名</param>
/// <param name="fontcolor">字體顏色</param>
/// <param name="fontsize">字體大小</param>
/// <returns></returns>
public static IFont GetFontStyle(HSSFWorkbook hssfworkbook, string fontfamily, HSSFColor fontcolor, int fontsize)
{
IFont font1 = hssfworkbook.CreateFont();
if (string.IsNullOrEmpty(fontfamily))
{
font1.FontName = fontfamily;
}
if (fontcolor != null)
{
font1.Color = fontcolor.GetIndex();
}
font1.IsItalic = true;
font1.FontHeightInPoints = (short)fontsize;
return font1;
}
(2).設(shè)置單元格內(nèi)顯示數(shù)據(jù)的格式
ICell cell = row.CreateCell(1);
ICellStyle cellStyleNum = Excel.GetICellStyle(book);
IDataFormat formatNum = book.CreateDataFormat();
cellStyleNum.DataFormat = formatNum.GetFormat("0.00E+00");//設(shè)置單元格的格式為科學(xué)計數(shù)法cell.CellStyle = cellStyleNum;
(3).創(chuàng)建單元格的邊框,背景顏色,以及對齊方式
/// <summary>
/// 獲取單元格樣式
/// </summary>
/// <param name="hssfworkbook">Excel操作類</param>
/// <param name="font">單元格字體</param>
/// <param name="fillForegroundColor">圖案的顏色</param>
/// <param name="fillPattern">圖案樣式</param>
/// <param name="fillBackgroundColor">單元格背景</param>
/// <param name="ha">垂直對齊方式</param>
/// <param name="va">垂直對齊方式</param>
/// <returns></returns>
public static ICellStyle GetCellStyle(HSSFWorkbook hssfworkbook, IFont font, HSSFColor fillForegroundColor, FillPatternType fillPattern, HSSFColor fillBackgroundColor, HorizontalAlignment ha, VerticalAlignment va)
{
ICellStyle cellstyle = hssfworkbook.CreateCellStyle();
cellstyle.FillPattern = fillPattern;
cellstyle.Alignment = ha;
cellstyle.VerticalAlignment = va;
if (fillForegroundColor != null)
{
cellstyle.FillForegroundColor = fillForegroundColor.GetIndex();
}
if (fillBackgroundColor != null)
{
cellstyle.FillBackgroundColor = fillBackgroundColor.GetIndex();
}
if (font != null)
{
cellstyle.SetFont(font);
}
//有邊框
cellstyle.BorderBottom = CellBorderType.THIN;
cellstyle.BorderLeft = CellBorderType.THIN;
cellstyle.BorderRight = CellBorderType.THIN;
cellstyle.BorderTop = CellBorderType.THIN;
return cellstyle;
}
(4).合并單元格
/// <summary>
/// 合并單元格
/// </summary>
/// <param name="sheet">要合并單元格所在的sheet</param>
/// <param name="rowstart">開始行的索引</param>
/// <param name="rowend">結(jié)束行的索引</param>
/// <param name="colstart">開始列的索引</param>
/// <param name="colend">結(jié)束列的索引</param>
public static void SetCellRangeAddress(ISheet sheet, int rowstart, int rowend, int colstart, int colend)
{
CellRangeAddress cellRangeAddress = new CellRangeAddress(rowstart, rowend, colstart, colend);
sheet.AddMergedRegion(cellRangeAddress);
}
4.將Excel文件輸出
FileStream stream = File.OpenWrite(@"F:/test.xls"); ;
book.Write(stream);
stream.Close();
以上就是使用NPOI動態(tài)生成Excel的行和列,以及單元格的樣式,具體的可以參考Demo下載.
相關(guān)文章
Unity?UGUI的RawImage原始圖片組件使用示例詳解
這篇文章主要為大家介紹了Unity?UGUI的RawImage原始圖片組件使用示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2023-07-07.net文件上傳時實現(xiàn)通過文件頭確認文件類型的方法
這篇文章主要介紹了.net文件上傳時實現(xiàn)通過文件頭確認文件類型的方法,很實用的功能,需要的朋友可以參考下2014-07-07C#使用ILGenerator動態(tài)生成函數(shù)的簡單代碼
這篇文章主要介紹了C#使用ILGenerator動態(tài)生成函數(shù)的簡單代碼,需要的朋友可以參考下2017-08-08C#中加載dll并調(diào)用其函數(shù)的實現(xiàn)方法
下面小編就為大家?guī)硪黄狢#中加載dll并調(diào)用其函數(shù)的實現(xiàn)方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-02-02C#實現(xiàn)軟件監(jiān)控外部程序運行狀態(tài)的方法
這篇文章主要介紹了C#實現(xiàn)軟件監(jiān)控外部程序運行狀態(tài)的方法,可實現(xiàn)監(jiān)控另一個程序的運行狀態(tài)及觸發(fā)相應(yīng)事件的功能,是非常實用的技巧,需要的朋友可以參考下2014-12-12