.xls格式 Office2003及以下版本
.xlsx格式 Office2007 及以上版本
.csv格式 以逗號分隔的字串文本(可以將上述兩種檔案類型另存新檔此格式)
讀取前兩種格式和讀取後一種格式會用兩種不同的方法。
下面看程式:
頁面前台:
<div> <%-- 檔案上傳控制項 用於將要讀取的檔案上傳 並通過此控制項擷取檔案的資訊--%> <asp:FileUpload ID="fileSelect" runat="server" /> <%-- 點擊此按鈕執行讀取方法--%> <asp:Button ID="btnRead" runat="server" Text="ReadStart" /></div>
後台代碼:
//聲明變數(屬性) string currFilePath = string.Empty; //待讀取檔案的全路徑 string currFileExtension = string.Empty; //檔案的副檔名 //Page_Load事件 註冊按鈕單擊事件 protected void Page_Load(object sender,EventArgs e) { this.btnRead.Click += new EventHandler(btnRead_Click); } //按鈕單擊事件 //裡面的3個方法將在下面給出 protected void btnRead_Click(object sender,EventArgs e) { Upload(); //上傳檔案方法 if(this.currFileExtension ==".xlsx" || this.currFileExtension ==".xls") { DataTable dt = ReadExcelToTable(currFilePath); //讀取Excel檔案(.xls和.xlsx格式) } else if(this.currFileExtension == ".csv") { DataTable dt = ReadExcelWidthStream(currFilePath); //讀取.csv格式檔案 } }
下面列出按鈕單擊事件中的3個方法
///<summary>///上傳檔案到臨時目錄中 ///</ummary>private void Upload(){HttpPostedFile file = this.fileSelect.PostedFile;string fileName = file.FileName;string tempPath = System.IO.Path.GetTempPath(); //擷取系統臨時檔案路徑fileName = System.IO.Path.GetFileName(fileName); //擷取檔案名稱(不帶路徑)this.currFileExtension = System.IO.Path.GetExtension(fileName); //擷取檔案的副檔名this.currFilePath = tempPath + fileName; //擷取上傳後的檔案路徑 記錄到前面聲明的全域變數file.SaveAs(this.currFilePath); //上傳}///<summary>///讀取xls\xlsx格式的Excel檔案的方法 ///</ummary>///<param name="path">待讀取Excel的全路徑</param>///<returns></returns>private DataTable ReadExcelToTable(string path){//連接字串string connstring = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + path + ";Extended Properties='Excel 8.0;HDR=NO;IMEX=1';"; // Office 07及以上版本 不能出現多餘的空格 而且分號注意//string connstring = Provider=Microsoft.JET.OLEDB.4.0;Data Source=" + path + ";Extended Properties='Excel 8.0;HDR=NO;IMEX=1';"; //Office 07以下版本 因為本人用Office2010 所以沒有用到這個連接字串 可根據自己的情況選擇 或者程式判斷要用哪一個連接字串using(OleDbConnection conn = new OleDbConnection(connstring)){conn.Open();DataTable sheetsName = conn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables,new object[]{null,null,null,"Table"}); //得到所有sheet的名字string firstSheetName = sheetsName.Rows[0][2].ToString(); //得到第一個sheet的名字string sql = string.Format("SELECT * FROM [{0}],firstSheetName); //查詢字串OleDbDataAdapter ada =new OleDbDataAdapter(sql,connstring);DataSet set = new DataSet();ada.Fill(set);return set.Tables[0];}}///<summary>///讀取csv格式的Excel檔案的方法 ///</ummary>///<param name="path">待讀取Excel的全路徑</param>///<returns></returns>private DataTable ReadExcelWithStream(string path){DataTable dt = new DataTable();bool isDtHasColumn = false; //標記DataTable 是否已經產生了列StreamReader reader = new StreamReader(path,System.Text.Encoding.Default); //資料流while(!reader.EndOfStream){string meaage = reader.ReadLine();string[] splitResult = message.Split(new char[]{','},StringSplitOption.None); //讀取一行 以逗號分隔 存入數組DataRow row = dt.NewRow();for(int i = 0;i<splitResult.Length;i++){if(!isDtHasColumn) //如果還沒有產生列{dt.Columns.Add("column" + i,typeof(string));}row[i] = splitResult[i];}dt.Rows.Add(row); //添加行isDtHasColumn = true; //讀取第一行後 就標記已經存在列 再讀取以後的行時,就不再產生列}return dt;}