C#編程之Excel匯入、匯出(源碼下載) (上)

來源:互聯網
上載者:User
本篇主要介紹C#的Excel匯入、匯出。

1. 介紹


1.1 第三方類庫:NPOI

說明:NPOI是POI項目的.NET 版本,可用於Excel、Word的讀寫操作。

優點:不用裝Office環境。

下載地址:http://npoi.codeplex.com/releases

1.2 Excel結構介紹

活頁簿(Workbook):每個Excel檔案可理解為一個活頁簿。

工作表(Sheet):一個活頁簿(Workbook)可以包含多個工作表。

行(row):一個工作表(Sheet)可以包含多個行。

2. Excel匯入


2.1 操作流程

2.2 NPOI作業碼


說明:把Excel檔案轉換為List<T>

步驟:

①讀取Excel檔案並以此初始化一個活頁簿(Workbook);

②從活頁簿上擷取一個工作表(Sheet);預設為工作薄的第一個工作表;

③遍曆工作表所有的行(row);預設從第二行開始遍曆,第一行(序號0)為儲存格頭部;

④遍曆行的每一個儲存格(cell),根據一定的規律賦值給對象的屬性。

代碼:

/// 從Excel2003取資料並記錄到List集合裡/// <param name="cellHeard">單元頭的Key和Value:{ { "UserName", "姓名" }, { "Age", "年齡" } };</param>/// <param name="filePath">儲存檔案絕對路徑</param>/// <param name="errorMsg">錯誤資訊</param>/// <returns>轉換好的List對象集合</returns>private static List<T> Excel2003ToEntityList<T>(Dictionary<string, string> cellHeard, string filePath, out StringBuilder errorMsg) where T : new(){    errorMsg = new StringBuilder(); // 錯誤資訊,Excel轉換到實體物件時,會有格式的錯誤資訊    List<T> enlist = new List<T>(); // 轉換後的集合    List<string> keys = cellHeard.Keys.ToList(); // 要賦值的實體物件屬性名稱    try    {        using (FileStream fs = File.OpenRead(filePath))        {            HSSFWorkbook workbook = new HSSFWorkbook(fs);            HSSFSheet sheet = (HSSFSheet)workbook.GetSheetAt(0); // 擷取此檔案第一個Sheet頁            for (int i = 1; i <= sheet.LastRowNum; i++) // 從1開始,第0行為單元頭            {                // 1.判斷當前行是否空行,若空行就不在進行讀取下一行操作,結束Excel讀取操作                if (sheet.GetRow(i) == null)                {                    break;                }                T en = new T();                string errStr = ""; // 當前行轉換時,是否有錯誤資訊,格式為:第1行資料轉換異常:XXX列;                for (int j = 0; j < keys.Count; j++)                {                    // 2.若屬性頭的名稱包含'.',就表示是子類裡的屬性,那麼就要遍曆子類,eg:UserEn.TrueName                    if (keys[j].IndexOf(".") >= 0)                    {                        // 2.1解析子類屬性                        string[] properotyArray = keys[j].Split(new string[] { "." }, StringSplitOptions.RemoveEmptyEntries);                        string subClassName = properotyArray[0]; // '.'前面的為子類的名稱                        string subClassProperotyName = properotyArray[1]; // '.'後面的為子類的屬性名稱                        System.Reflection.PropertyInfo subClassInfo = en.GetType().GetProperty(subClassName); // 擷取子類的類型                        if (subClassInfo != null)                        {                            // 2.1.1 擷取子類的執行個體                            var subClassEn = en.GetType().GetProperty(subClassName).GetValue(en, null);                            // 2.1.2 根據屬性名稱擷取子類裡的屬性資訊                            System.Reflection.PropertyInfo properotyInfo = subClassInfo.PropertyType.GetProperty(subClassProperotyName);                            if (properotyInfo != null)                            {                                try                                {                                    // Excel儲存格的值轉換為對象屬性的值,若類型不對,記錄出錯資訊                                    properotyInfo.SetValue(subClassEn, GetExcelCellToProperty(properotyInfo.PropertyType, sheet.GetRow(i).GetCell(j)), null);                                }                                catch (Exception e)                                {                                    if (errStr.Length == 0)                                    {                                        errStr = "第" + i + "行資料轉換異常:";                                    }                                    errStr += cellHeard[keys[j]] + "列;";                                }                            }                        }                    }                    else                    {                        // 3.給指定的屬性賦值                        System.Reflection.PropertyInfo properotyInfo = en.GetType().GetProperty(keys[j]);                        if (properotyInfo != null)                        {                            try                            {                                // Excel儲存格的值轉換為對象屬性的值,若類型不對,記錄出錯資訊                                properotyInfo.SetValue(en, GetExcelCellToProperty(properotyInfo.PropertyType, sheet.GetRow(i).GetCell(j)), null);                            }                            catch (Exception e)                            {                                if (errStr.Length == 0)                                {                                    errStr = "第" + i + "行資料轉換異常:";                                }                                errStr += cellHeard[keys[j]] + "列;";                            }                        }                    }                }                // 若有錯誤資訊,就添加到錯誤資訊裡                if (errStr.Length > 0)                {                    errorMsg.AppendLine(errStr);                }                enlist.Add(en);            }        }        return enlist;    }    catch (Exception ex)    {        throw ex;    }}

2.3 C#邏輯作業碼

說明:對Excel轉換後的List<T>進行後續操作;如:檢測有效性、持久化儲存等等

步驟:

①調用2.2代碼,把Excel檔案轉換為List<T>。

②對List<T>進行有效性檢測:必填項是否為空白、是否有重複記錄等等。

③對List<T>進行持久化儲存操作。如:儲存到資料庫。

④返回操作結果。

代碼:

public void ImportExcel(HttpContext context){    StringBuilder errorMsg = new StringBuilder(); // 錯誤資訊    try    {        #region 1.擷取Excel檔案並轉換為一個List集合        // 1.1存放Excel檔案到本機伺服器        HttpPostedFile filePost = context.Request.Files["filed"]; // 擷取上傳的檔案        string filePath = ExcelHelper.SaveExcelFile(filePost); // 儲存檔案並擷取檔案路徑         // 儲存格抬頭        // key:實體物件屬性名稱,可通過反射擷取值        // value:屬性對應的中文註解        Dictionary<string, string> cellheader = new Dictionary<string, string> {            { "Name", "姓名" },            { "Age", "年齡" },            { "GenderName", "性別" },            { "TranscriptsEn.ChineseScores", "語文成績" },            { "TranscriptsEn.MathScores", "數學成績" },        };         // 1.2解析檔案,存放到一個List集合裡        List<UserEntity> enlist = ExcelHelper.ExcelToEntityList<UserEntity>(cellheader, filePath, out errorMsg);         #endregion         #region 2.對List集合進行有效性校正         #region 2.1檢測必填項是否必填         for (int i = 0; i < enlist.Count; i++)        {            UserEntity en = enlist[i];            string errorMsgStr = "第" + (i + 1) + "行資料檢測異常:";            bool isHaveNoInputValue = false; // 是否含有未輸入項            if (string.IsNullOrEmpty(en.Name))            {                errorMsgStr += "姓名列不可為空;";                isHaveNoInputValue = true;            }            if (isHaveNoInputValue) // 若必填項有值未填            {                en.IsExcelVaildateOK = false;                errorMsg.AppendLine(errorMsgStr);            }        }         #endregion         #region 2.2檢測Excel中是否有重複對象         for (int i = 0; i < enlist.Count; i++)        {            UserEntity enA = enlist[i];            if (enA.IsExcelVaildateOK == false) // 上面驗證不通過,不進行此步驗證            {                continue;            }             for (int j = i + 1; j < enlist.Count; j++)            {                UserEntity enB = enlist[j];                // 判斷必填列是否全部重複                if (enA.Name == enB.Name)                {                    enA.IsExcelVaildateOK = false;                    enB.IsExcelVaildateOK = false;                    errorMsg.AppendLine("第" + (i + 1) + "行與第" + (j + 1) + "行的必填列重複了");                }            }        }         #endregion         // TODO:其他檢測         #endregion         // 3.TODO:對List集合持久化儲存操作。如:儲存到資料庫                 // 4.返回操作結果        bool isSuccess = false;        if (errorMsg.Length == 0)        {            isSuccess = true; // 若錯誤資訊成都為空白,表示無錯誤資訊        }        var rs = new { success = isSuccess,  msg = errorMsg.ToString(), data = enlist };        System.Web.Script.Serialization.JavaScriptSerializer js = new System.Web.Script.Serialization.JavaScriptSerializer();        context.Response.ContentType = "text/plain";        context.Response.Write(js.Serialize(rs)); // 返回Json格式的內容    }    catch (Exception ex)    {     throw ex;    }}

以上就是C#編程之Excel匯入、匯出(源碼下載) (上)的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    聯繫我們

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