C# 使用 NPOI 庫讀寫 Excel 檔案(轉載)

來源:互聯網
上載者:User

標籤:style   blog   http   color   使用   os   strong   io   

NPOI 是開源的 POI 項目的.NET版,可以用來讀寫Excel,Word,PPT檔案。在處理Excel檔案上,NPOI 可以同時兼 容xls 和 xlsx。官網提供了一份Examples,給出了很多應用情境的例子,打包好的二進位檔案類庫,也僅有幾MB,使用非常方便。

讀取Excel

NPOI使用HSSFWorkbook類來處理xls,XSSFWorkbook類來處理xlsx,它們都繼承介面IWorkbook,因此可以通過IWorkbook來統一處理xls和xlsx格式的檔案。

以下是簡單的例子

public void ReadFromExcelFile(string filePath){    IWorkbook wk = null;    string extension = System.IO.Path.GetExtension(filePath);    try    {        FileStream fs = File.OpenRead(filePath);        if (extension.Equals(".xls"))        {            //把xls檔案中的資料寫入wk中            wk = new HSSFWorkbook(fs);        }        else        {            //把xlsx檔案中的資料寫入wk中            wk = new XSSFWorkbook(fs);        }        fs.Close();        //讀取當前表資料        ISheet sheet = wk.GetSheetAt(0);        IRow row = sheet.GetRow(0);  //讀取當前行資料        //LastRowNum 是當前表的總行數-1(注意)        int offset = 0;        for (int i = 0; i <= sheet.LastRowNum; i++)        {            row = sheet.GetRow(i);  //讀取當前行資料            if (row != null)            {                //LastCellNum 是當前行的總列數                for (int j = 0; j < row.LastCellNum; j++)                {                    //讀取該行的第j列資料                    string value = row.GetCell(j).ToString();                    Console.Write(value.ToString() + " ");                }                Console.WriteLine("\n");            }        }    }        catch (Exception e)    {        //只在Debug模式下才輸出        Console.WriteLine(e.Message);    }}

Excel中的儲存格是有不同資料格式的,例如數字,日期,字串等,在讀取的時候可以根據格式的不同設定對象的不同類型,方便後期的資料處理。

//擷取cell的資料,並設定為對應的資料類型public object GetCellValue(ICell cell){    object value = null;    try    {        if (cell.CellType != CellType.Blank)        {            switch (cell.CellType)            {                case CellType.Numeric:                    // Date Type的資料CellType是Numeric                    if (DateUtil.IsCellDateFormatted(cell))                    {                        value = cell.DateCellValue;                    }                    else                    {                        // Numeric type                        value = cell.NumericCellValue;                    }                    break;                case CellType.Boolean:                    // Boolean type                    value = cell.BooleanCellValue;                    break;                default:                    // String type                    value = cell.StringCellValue;                    break;            }        }    }    catch (Exception)    {        value = "";    }    return value;}

特別注意的是CellType中沒有Date,而日期類型的資料類型是Numeric,其實日期的資料在Excel中也是以數位形式儲存。可以使用DateUtil.IsCellDateFormatted方法來判斷是否是日期類型。

有了GetCellValue方法,寫資料到Excel中的時候就要有SetCellValue方法,缺的類型可以自己補。

//根據資料類型設定不同類型的cellpublic void SetCellValue(ICell cell, object obj){    if (obj.GetType() == typeof(int))    {        cell.SetCellValue((int)obj);    }    else if (obj.GetType() == typeof(double))    {        cell.SetCellValue((double)obj);    }    else if (obj.GetType() == typeof(IRichTextString))    {        cell.SetCellValue((IRichTextString)obj);    }    else if (obj.GetType() == typeof(string))    {        cell.SetCellValue(obj.ToString());    }    else if (obj.GetType() == typeof(DateTime))    {        cell.SetCellValue((DateTime)obj);    }    else if (obj.GetType() == typeof(bool))    {        cell.SetCellValue((bool)obj);    }    else    {        cell.SetCellValue(obj.ToString());    }}

cell.SetCellValue()方法只有四種重載方法,參數分別是stringboolDateTime,doubleIRichTextString(公式用IRichTextString

寫Excel

以下是簡單的例子,更多資訊可以參見官網提供的Examples。

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;//文字垂直對齊    //建立一個表    ISheet tb = wb.CreateSheet("sheet0");    //設定列寬    int[] columnWidth = { 10, 10, 10, 20 };    //測試資料    int rowCount = 3, columnCount = 4;    object[,] data = {        {"列0", "列1", "列2", "列3"},        {"", 400, 5.2, 6.01},        {"", DateTime.Today, true, "2014-07-02"}    };    for (int i = 0; i < columnWidth.Length; i++)    {        //設定列寬度,256*字元數,因為單位是1/256個字元        tb.SetColumnWidth(i, 256 * columnWidth[i]);    }    IRow row;    ICell cell;    for (int i = 0; i < rowCount; i++)    {        row = tb.CreateRow(i);//建立第i行        for (int j = 0; j < columnCount; j++)        {            cell = row.CreateCell(j);//建立第j列            cell.CellStyle = j % 2 == 0 ? style1 : style2;            //根據資料類型設定不同類型的cell            SetCellValue(cell, data[i, j]);        }    }    //合併儲存格,如果要合并的儲存格中都有資料,只會保留左上方的    //CellRangeAddress(0, 2, 0, 0),合并0-2行,0-0列的儲存格    CellRangeAddress region = new CellRangeAddress(0, 2, 0, 0);    tb.AddMergedRegion(region);    try    {        FileStream fs = File.OpenWrite(filePath);        wb.Write(fs);   //向開啟的這個xls檔案中寫入表並儲存。          fs.Close();    }    catch (Exception e)    {        Debug.WriteLine(e.Message);    }}

 

轉載自:http://www.cnblogs.com/restran/p/3889479.html

相關資料:

NPOI官網:http://npoi.codeplex.com/

NPOI大全:http://www.cnblogs.com/atao/category/209358.html

:NPOI 2.1 examples , NPOI 2.1.1 binary

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.