主頁 > 知識庫 > asp.net實(shí)現(xiàn)將Excel中多個(gè)sheet數(shù)據(jù)導(dǎo)入到SQLSERVER中的方法

asp.net實(shí)現(xiàn)將Excel中多個(gè)sheet數(shù)據(jù)導(dǎo)入到SQLSERVER中的方法

熱門標(biāo)簽:濮陽外呼電銷系統(tǒng)怎么樣 代理接電話機(jī)器人如何取消 遂寧市地圖標(biāo)注app 天心智能電銷機(jī)器人 地圖定位圖標(biāo)標(biāo)注 地圖標(biāo)注的公司有哪些 400電話辦理哪家性價(jià)比高 地圖標(biāo)注專業(yè)團(tuán)隊(duì) 塔城代理外呼系統(tǒng)

本文實(shí)例講述了asp.net實(shí)現(xiàn)將Excel中多個(gè)sheet數(shù)據(jù)導(dǎo)入到SQLSERVER中的方法。分享給大家供大家參考,具體如下:

public DataSet GetDataSet(string filePath)
{
  string Connstr = string.Format("Provider=Microsoft.Jet.OLEDB.4.0;Data Source='" + filePath + "';Extended Properties='Excel 8.0;HDR=Yes;IMEX=1'");
  OleDbConnection Conn = new OleDbConnection(Connstr);
  //創(chuàng)建ArrayList對象 存放所有sheetname 
  ArrayList sheetNamelist = new ArrayList();
  //獲取配置Excel中sheet總數(shù)(這里是根據(jù)項(xiàng)目需求配置的) 如果需要導(dǎo)入Excel表格所有sheet數(shù)據(jù)則將此代碼刪除
  int sheetCount = Convert.ToInt32(ConfigurationManager.AppSettings["sheetCount"].ToString());
  DataSet dsExcel = new DataSet();
  try
  {
   if (Conn.State == ConnectionState.Closed)
   {
    Conn.Open();
   }
   DataTable dtExcelSchema = Conn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new object[] { null, null, null, "Table" });
   string sheetName = string.Empty;
   if (dtExcelSchema.Rows.Count > sheetCount)
   {
    Page.RegisterStartupScript("", "mce:script type="text/javascript">!--
alert('很抱歉!你上傳Excel文件sheet總數(shù)過多不能大于10個(gè)sheet..!! ')
// -->/mce:script>");
    return;
   }
   else
   {
    for (int j = 0; j  dtExcelSchema.Rows.Count; j++)
    {
     sheetName = String.Format("Sheet{0}$", j + 1);
     sheetNamelist.Add(sheetName);
    }
   }
  }
  catch (Exception ex)
  {
   throw new Exception(ex.Message.ToString(), ex);
  }
  finally
  {
   Conn.Close();
  }
  try
  {
   string strSQL = string.Empty;
   for (int i = 0; i  sheetNamelist.Count; i++)
   {
    strSQL = "select * from [" + sheetNamelist[i].ToString() + "]";
    OleDbDataAdapter da = new OleDbDataAdapter(strSQL, Conn);
    DataTable dtExcel = new DataTable(sheetNamelist[i].ToString());
    da.Fill(dtExcel);
    dsExcel.Tables.Add(dtExcel);
   }
   return dsExcel;
  }
  catch (Exception ex)
  {
   throw new Exception(ex.Message.ToString(), ex);
  }
 }
 //從Excel 表中取出數(shù)據(jù) 將取出來的數(shù)據(jù)插入到數(shù)據(jù)庫中
 public void InsertData(DataSet ds) {
   string strSQL=string.Empty;
   if (ds.Tables[0].Rows.Count > 0)
   {
    for (int j = 0; j  ds.Tables.Count; j++) 
    { 
    for(int i=0;ids.Tables[j].Rows.Count;i++)
    {
     DataRow dr=ds.Tables[j].Rows[i];
     //組名
     string groupname = dr["組名"].ToString().Trim();
     //聯(lián)系人
     string contactName = dr["聯(lián)系人"].ToString().Trim();
     //手機(jī)號碼
     string mobile = dr["手機(jī)號碼"].ToString().Trim();
     //公司名稱
     string companyName = dr["公司名稱"].ToString().Trim();
     //公辦號碼
     string officeNum = dr["辦公號碼"].ToString().Trim();
     //家庭號碼
     string homeNum = dr["家庭號碼"].ToString().Trim();
     //郵箱
     string Email = dr["郵 箱"].ToString().Trim();
     //聯(lián)系地址
     string address = dr["聯(lián)系地址"].ToString().Trim();
     //創(chuàng)建時(shí)間
     string createtime = dr["創(chuàng)建時(shí)間"].ToString().Trim();
     //性別
     string Sex = dr["性別"].ToString().Trim();
     //手機(jī)套餐類型
     string mobileType = dr["手機(jī)套餐類型"].ToString().Trim();
     //是否開通通信助理
     string isOpen = dr["是否開通通信助理"].ToString().Trim();
     //SQL 語句
     strSQL = "insert into msm_Excel(groupName,Mobile,Name,companyName,officeNum,homeNum,Emial,address,Createtime,Sex,mobileType,isOpen)values('" + groupname + "','" + mobile + "','" + contactName + "','" + companyName + "','" + officeNum + "','" + homeNum + "','" + Email + "','" + address + "','" + createtime + "','" + Sex + "','" + mobileType + "','" + isOpen + "')";
     try
     {
      int n = SQLHelper.SqlDataExecute(strSQL);
      if (n > 0)
      {
       Page.RegisterStartupScript("", "mce:script type="text/javascript">!--
alert('數(shù)據(jù)插入成功!')
// -->/mce:script>");
       Label1.Text = "一共成功插入" + ds.Tables[j].Rows.Count.ToString() + "條數(shù)據(jù)";
      }
      else
      {
       Page.RegisterStartupScript("", "mce:script type="text/javascript">!--
alert('服務(wù)器繁忙!請稍候再試..!')
// -->/mce:script>");
      }
     }
     catch (Exception ex)
     {
      throw ex;
     }
    }
   }    
  }
  else {
   Page.RegisterStartupScript("", "mce:script type="text/javascript">!--
alert('此Excel文件中無數(shù)據(jù)!!!')
// -->/mce:script>");
  }
 }
//調(diào)用
//獲取上傳文件名
  string fileName = FileUpload1.FileName;
   //判斷是否存在上傳文件
  if (FileUpload1.PostedFile.FileName.Length == 0) {
   Page.RegisterStartupScript("", "mce:script type="text/javascript">!--
alert('請選擇你要上傳的Excel文件!!')
// -->/mce:script>");
  }
   //判斷上傳的文件類型是否正確
  else if (!Path.GetExtension(FileUpload1.PostedFile.FileName).ToLower().Equals(".xls")  !Path.GetExtension(FileUpload1.PostedFile.FileName).ToLower().Equals(".xlsx"))
  {
   Page.RegisterStartupScript("", "script>alert('很抱歉!你上傳的文件類型不正確!只能上傳Excel類型的文件!')/script.");
  }
  else
  {
   //獲取上傳的文件路徑
   filePath = Server.MapPath("TxtFiles//") + DateTime.Now.ToString("yyyyMMddhhmmss") + fileName;
   this.FileUpload1.PostedFile.SaveAs(filePath);
   ds = GetDataSet(filePath);
   InsertData(ds);
  }

希望本文所述對大家asp.net程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • asp.net core集成CKEditor實(shí)現(xiàn)圖片上傳功能的示例代碼
  • asp.net core webapi文件上傳功能的實(shí)現(xiàn)
  • ASP.NET Core單文件和多文件上傳并保存到服務(wù)端的方法
  • asp.net利用ashx文件實(shí)現(xiàn)文件的上傳功能
  • asp.net大文件上傳解決方案實(shí)例代碼
  • asp.net上傳Excel文件并讀取數(shù)據(jù)的實(shí)現(xiàn)方法
  • ASP.NET Core中使用EPPlus導(dǎo)入出Excel文件的完整步驟
  • ASP.NET Core 導(dǎo)入導(dǎo)出Excel xlsx 文件實(shí)例
  • ASP.NET之Excel下載模板、導(dǎo)入、導(dǎo)出操作
  • asp.net實(shí)現(xiàn)數(shù)據(jù)從DataTable導(dǎo)入到Excel文件并創(chuàng)建表的方法
  • asp.net中EXCEL數(shù)據(jù)導(dǎo)入到數(shù)據(jù)庫的方法
  • Asp.Net使用Npoi導(dǎo)入導(dǎo)出Excel的方法
  • ASP.NET下將Excel表格中的數(shù)據(jù)規(guī)則的導(dǎo)入數(shù)據(jù)庫思路分析及實(shí)現(xiàn)
  • ASP.NET 上傳文件導(dǎo)入Excel的示例

標(biāo)簽:重慶 麗江 婁底 河南 宜春 本溪 吉林 汕頭

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《asp.net實(shí)現(xiàn)將Excel中多個(gè)sheet數(shù)據(jù)導(dǎo)入到SQLSERVER中的方法》,本文關(guān)鍵詞  asp.net,實(shí),現(xiàn)將,Excel,中,多個(gè),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《asp.net實(shí)現(xiàn)將Excel中多個(gè)sheet數(shù)據(jù)導(dǎo)入到SQLSERVER中的方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于asp.net實(shí)現(xiàn)將Excel中多個(gè)sheet數(shù)據(jù)導(dǎo)入到SQLSERVER中的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章