C# 使用 NPOI 庫讀寫 Excel 檔案

來源:互聯網
上載者:User

標籤:arp   開啟   datetime   www.   href   ==   date   setfont   font   

public void WriteToExcel(string filePath){    //建立工作薄      IWorkbook wb;    string extension = System.IO.Path.GetExtension(filePath);    //根據指定的檔案格式建立對應的類    if (extension.Equals(".xls"))    {        wb = new HSSFWorkbook();    }    else    {        wb = new XSSFWorkbook();    }    ICellStyle style1 = wb.CreateCellStyle();//樣式    style1.Alignment = NPOI.SS.UserModel.HorizontalAlignment.Left;//文字水平對齊    style1.VerticalAlignment = NPOI.SS.UserModel.VerticalAlignment.Center;//文字垂直對齊    //設定邊框    style1.BorderBottom = NPOI.SS.UserModel.BorderStyle.Thin;    style1.BorderLeft = NPOI.SS.UserModel.BorderStyle.Thin;    style1.BorderRight = NPOI.SS.UserModel.BorderStyle.Thin;    style1.BorderTop = NPOI.SS.UserModel.BorderStyle.Thin;    style1.WrapText = true;//自動換行    ICellStyle style2 = wb.CreateCellStyle();//樣式    IFont font1 = wb.CreateFont();//字型    font1.FontName = "楷體";    font1.Color = HSSFColor.Red.Index;//字型顏色    font1.Boldweight = (short)FontBoldWeight.Normal;//字型加粗樣式    style2.SetFont(font1);//樣式裡的字型設定具體的字型樣式    //設定背景色    style2.FillForegroundColor = NPOI.HSSF.Util.HSSFColor.Yellow.Index;    style2.FillPattern = FillPattern.SolidForeground;    style2.FillBackgroundColor = NPOI.HSSF.Util.HSSFColor.Yellow.Index;    style2.Alignment = NPOI.SS.UserModel.HorizontalAlignment.Left;//文字水平對齊    style2.VerticalAlignment = NPOI.SS.UserModel.VerticalAlignment.Center;//文字垂直對齊    ICellStyle dateStyle = wb.CreateCellStyle();//樣式    dateStyle.Alignment = NPOI.SS.UserModel.HorizontalAlignment.Left;//文字水平對齊    dateStyle.VerticalAlignment = NPOI.SS.UserModel.VerticalAlignment.Center;//文字垂直對齊    //設定資料顯示格式    IDataFormat dataFormatCustom = wb.CreateDataFormat();    dateStyle.DataFormat = dataFormatCustom.GetFormat("yyyy-MM-dd HH:mm:ss");    //建立一個表單    ISheet sheet = wb.CreateSheet("Sheet0");    //設定列寬    int[] columnWidth = { 10, 10, 20, 10 };    for (int i = 0; i < columnWidth.Length; i++)    {        //設定列寬度,256*字元數,因為單位是1/256個字元        sheet.SetColumnWidth(i, 256 * columnWidth[i]);    }    //測試資料    int rowCount = 3, columnCount = 4;    object[,] data = {        {"列0", "列1", "列2", "列3"},        {"", 400, 5.2, 6.01},        {"", true, "2014-07-02", DateTime.Now}        //日期可以直接傳字串,NPOI會自動識別        //如果是DateTime類型,則要設定CellStyle.DataFormat,否則會顯示為數字    };    IRow row;    ICell cell;        for (int i = 0; i < rowCount; i++)    {        row = sheet.CreateRow(i);//建立第i行        for (int j = 0; j < columnCount; j++)        {            cell = row.CreateCell(j);//建立第j列            cell.CellStyle = j % 2 == 0 ? style1 : style2;            //根據資料類型設定不同類型的cell            object obj = data[i, j];            SetCellValue(cell, data[i, j]);            //如果是日期,則設定日期顯示的格式            if (obj.GetType() == typeof(DateTime))            {                cell.CellStyle = dateStyle;            }            //如果要根據內容自動調整列寬,需要先setCellValue再調用            //sheet.AutoSizeColumn(j);        }    }    //合併儲存格,如果要合并的儲存格中都有資料,只會保留左上方的    //CellRangeAddress(0, 2, 0, 0),合并0-2行,0-0列的儲存格    CellRangeAddress region = new CellRangeAddress(0, 2, 0, 0);    sheet.AddMergedRegion(region);    try    {        FileStream fs = File.OpenWrite(filePath);        wb.Write(fs);//向開啟的這個Excel檔案中寫入表單並儲存。          fs.Close();    }    catch (Exception e)    {        Debug.WriteLine(e.Message);    }}

如果想要設定儲存格為唯讀或可寫,可以參考這裡,方法如下:

ICellStyle unlocked = wb.CreateCellStyle();unlocked.IsLocked = false;//設定該儲存格為非鎖定cell.SetCellValue("未被鎖定");cell.CellStyle = unlocked;...//保護表單,password為解鎖密碼//cell.CellStyle.IsLocked = true;的儲存格將為唯讀sheet.ProtectSheet("password");

cell.CellStyle.IsLocked 預設就是true,因此sheet.ProtectSheet("password")一定要執行,才能實現鎖定儲存格,對於不想鎖定的儲存格,就一定要設定cellCellStyle中的IsLocked = false

C# 使用 NPOI 庫讀寫 Excel 檔案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.