C# Excel導入相關知識總結
作者:佚名
Excel只能存儲65535行數據,在使用C# Excel導入數據時需要注意這一問題;另外,亂碼的問題也值得我們關注。本文向您提供這兩種問題的解決方法。
C# Excel導入有以下幾點需要我們注意:
1.C# Excel導入只能存儲65535行數據,如果你的數據大于65535行,那么就需要將excel分割存放了。
2.C# Excel導入的亂碼,這主要是字符設置問題。
1.加載Excel(讀取excel內容)返回值是一個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("數據綁定Excel失敗!
- 失敗原因:" + err.Message, "提示信息",
- MessageBoxButtons.OK, MessageBoxIcon.Information);
- return null;
- }
- }
2.C# Excel導入內容,參數:excelTable是要導入excel的一個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;
- }
- //設置禁止彈出保存和覆蓋的詢問提示框
- 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("導出Excel出錯!
- 錯誤原因:" + err.Message, "提示信息",
- MessageBoxButtons.OK, MessageBoxIcon.
- Information);
- return false;
- }
- finally
- {
- }
【編輯推薦】
責任編輯:冰荷
來源:
hoopchina