C#中怎么讀取Excel文件并存入數(shù)據(jù)庫,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
崗巴ssl適用于網(wǎng)站、小程序/APP、API接口等需要進行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18980820575(備注:SSL證書合作)期待與您的合作!
protected void Page_Load(object sender, EventArgs e) { DataSet ds = ImportExcel(Server.MapPath("ExcelFile/供應(yīng)商違約扣款.xls")); //C#讀Excel GridView1.DataSource = ds.Tables["ExcelInfo"].DefaultView; GridView1.DataBind(); ToDataBase(ds); } private DataSet ImportExcel(string strFileName) { if (strFileName == "") return null; string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + strFileName + ";" + "Extended Properties=Excel 8.0;HDR=Yes;IMEX=1"; OleDbDataAdapter ExcelDA = new OleDbDataAdapter("SELECT trim(供應(yīng)商) as 供應(yīng)商,零件名稱,型號,批量,下線數(shù),下線率,不合格原因,考核原因,考核金額 FROM [Sheet1$]", strConn); DataSet ExcelDs = new DataSet(); try { ExcelDA.Fill(ExcelDs, "ExcelInfo"); } catch (Exception err) { System.Console.WriteLine(err.ToString()); } return ExcelDs; } private bool ToDataBase(DataSet ds) { DataTable dtSupplier = new DataTable("dtSupplier"); DataView dv = ds.Tables[0].DefaultView; string[] column = { "供應(yīng)商" }; dtSupplier = dv.ToTable(true, column); for (int i = 0; i < dtSupplier.Rows.Count; i++) { DataRow[] r = ds.Tables[0].Select("供應(yīng)商='" + dtSupplier.Rows[i]["供應(yīng)商"].ToString() + "'"); //插父表 for (int j = 0; j < r.Length; j++) { string ItemName = r[j]["零件名稱"].ToString(); string scale = r[j]["型號"].ToString(); string batch = r[j]["批量"].ToString(); string downLine = r[j]["下線數(shù)"].ToString(); string downPercent = r[j]["下線率"].ToString(); string outReason = r[j]["不合格原因"].ToString(); string reason = r[j]["考核原因"].ToString(); string amt = r[j]["考核金額"].ToString(); //插子表 } //save } return true; }
看完上述內(nèi)容,你們掌握C#中怎么讀取Excel文件并存入數(shù)據(jù)庫的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!