萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> asp.net編程 >> .Net讀取Excel 返回DataTable實例代碼

.Net讀取Excel 返回DataTable實例代碼

 這篇文章主要介紹了.Net讀取Excel 返回DataTable實例代碼,有需要的朋友可以參考一下

代碼如下: using System; using Microsoft.SharePoint; using Microsoft.SharePoint.WebControls; using System.Data; using System.IO; using System.Linq; using System.Web; using System.Collections; using System.Data.OleDb; using NuctechProject.DTO.Bll; using System.Collections.Generic; namespace NuctechProject.Layouts.Project {     public partial class IntroductionPlan : LayoutsPageBase     {         string url = Common.rootUrl;         private string _strConn; //導入excel時的連接         string pmurl = Common.proUrl;         private UserBLL bll = new UserBLL();         protected void Page_Load(object sender, EventArgs e)         {             hidProid.Value = Request.QueryString["proid"];         }         protected void BtnOK_Click(object sender, EventArgs e)         {             DataTable excelTable = null;               SPSecurity.RunWithElevatedPrivileges(delegate             {                 if (BaseInfoTemplateFile.HasFile)                 {                     List<string> noInput = new List<string>();                     string strLoginName = HttpContext.Current.User.Identity.Name; //獲取用戶名                     string folderTemp = strLoginName.Substring(strLoginName.LastIndexOf('') + 1);                     try                     {                         string extension = Path.GetExtension(BaseInfoTemplateFile.FileName); //獲取文件的後綴                         if (extension != null)                         {                             string fileException = extension.ToLower();                             if (fileException == ".xlsx" || fileException == ".xls")                             {                                 #region 讀取Excel                                 string fileFolder = Server.MapPath("~/_layouts/15/images/" + folderTemp + "Upfile/");                                 if (!Directory.Exists(fileFolder)) //根目錄                                  {                                     Directory.CreateDirectory(fileFolder); //判斷上傳目錄是否存在     自動創建                                  }                                 BaseInfoTemplateFile.SaveAs(Server.MapPath("~/_layouts/15/images/" + folderTemp + "Upfile/" + BaseInfoTemplateFile.FileName));                                 string strFilepathNmae = Server.MapPath("~/_layouts/15/images/" + folderTemp + "Upfile/" + BaseInfoTemplateFile.FileName);                                 string strExcel = ExcelSheetName(strFilepathNmae)[0].ToString();                                 excelTable = ExcelDataSource(strFilepathNmae, strExcel).Tables[0];                                 #endregion                                 //data是excel的數據                                 DataTable data = ExcelDataSource(strFilepathNmae, strExcel).Tables[0]; //try                                     //{                                 if (data != null)                                 {                                                                               foreach (DataRow row in data.Rows)                                         {                                             //讀取                                         }                                   }                                 //}                                 //catch (Exception)                                 //{                                 //    Page.ClientScript.RegisterStartupScript(Page.ClientScript.GetType(), "myscript", "<script  type='text/javascript'>$.ligerDialog.closeWaitting();alert('Excel表列名與系統不符合,請檢查Excel表列名!');</script>");                                 //    return;                                 //}                             }                             else                             {                                 Page.ClientScript.RegisterStartupScript(Page.ClientScript.GetType(), "myscript", "<script  type='text/javascript'>$.ligerDialog.closeWaitting();alert('您選擇的文
copyright © 萬盛學電腦網 all rights reserved