看到論壇里面不斷有人提問關(guān)于讀取excel和導(dǎo)入excel的相關(guān)問題。閑暇時(shí)間將我所知道的對excel的操作加以總結(jié),現(xiàn)在共享大家,希望給大家能夠給大家?guī)Я艘欢ǖ膸椭?br>另外我們還要注意一些簡單的問題1.excel文件只能存儲65535行數(shù)據(jù),如果你的數(shù)據(jù)大于65535行,那么就需要將excel分割存放了。2.關(guān)于亂碼,這主要是字符設(shè)置問題。
1.加載Excel(讀取excel內(nèi)容)返回值是一個(gè)DataSet
- //加載Excel
- public static DataSet LoadDataFromExcel(string filePath)
- {
- try
- {
- string strConn;
- strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + filePath + ";Extended Properties='Excel 8.0;HDR=False;IMEX=1'";
- OleDbConnection OleConn = new OleDbConnection(strConn);
- OleConn.Open();
- String sql = "SELECT * FROM [Sheet1$]";//可是更改Sheet名稱,比如sheet2,等等
-
- OleDbDataAdapter OleDaExcel = new OleDbDataAdapter(sql, OleConn);
- DataSet OleDsExcle = new DataSet();
- OleDaExcel.Fill(OleDsExcle, "Sheet1");
- OleConn.Close();
- return OleDsExcle;
- }
- catch (Exception err)
- {
- MessageBox.Show("數(shù)據(jù)綁定Excel失敗!失敗原因:" + err.Message, "提示信息",
- MessageBoxButtons.OK, MessageBoxIcon.Information);
- return null;
- }
- }
2.寫入Excel內(nèi)容,參數(shù):excelTable是要導(dǎo)入excel的一個(gè)table表
- public static bool SaveDataTableToExcel(System.Data.DataTable excelTable, string filePath)
- {
- Microsoft.Office.Interop.Excel.Application app =
- new Microsoft.Office.Interop.Excel.ApplicationClass();
- try
- {
- app.Visible = false;
- Workbook wBook = app.Workbooks.Add(true);
- Worksheet wSheet = wBook.Worksheets[1] as Worksheet;
- if (excelTable.Rows.Count > 0)
- {
- int row = 0;
- row = excelTable.Rows.Count;
- int col = excelTable.Columns.Count;
- for (int i = 0; i < row; i++)
- {
- for (int j = 0; j < col; j++)
- {
- string str = excelTable.Rows[i][j].ToString();
- wSheet.Cells[i + 2, j + 1] = str;
- }
- }
- }
-
- int size = excelTable.Columns.Count;
- for (int i = 0; i < size; i++)
- {
- wSheet.Cells[1, 1 + i] = excelTable.Columns[i].ColumnName;
- }
- //設(shè)置禁止彈出保存和覆蓋的詢問提示框
- app.DisplayAlerts = false;
- app.AlertBeforeOverwriting = false;
- //保存工作簿
- wBook.Save();
- //保存excel文件
- app.Save(filePath);
- app.SaveWorkspace(filePath);
- app.Quit();
- app = null;
- return true;
- }
- catch (Exception err)
- {
- MessageBox.Show("導(dǎo)出Excel出錯(cuò)!錯(cuò)誤原因:" + err.Message, "提示信息",
- MessageBoxButtons.OK, MessageBoxIcon.Information);
- return false;
- }
- finally
- {
- }
- }
轉(zhuǎn)載的朋友請一定注明出處謝謝!http://blog.csdn.net/gisfarmer/
本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請
點(diǎn)擊舉報(bào)。