一、Winform窗体程序的Excel的导入
把Excel导入到内存中的DataTable
方法实现:
#region ExcelToDataTable public static DataTable ExcelToDataTable(string strExcelFileName,string strSheetName) { try { //源的定义 string strConn = "Provider=Microsoft.Jet.Oledb.4.0;Data Source=" + strExcelFileName + ";Extended Properties=\"Excel 8.0;HDR=Yes;IMEX=1;\""; //Sql语句 string strExcel = string.Format("select * from [{0}$] ", strSheetName); //string strExcel = "select * from [sheet1$] "; //定义存放的数据表 DataSet ds = new DataSet(); //连接数据源 OleDbConnection conn = new OleDbConnection(strConn); conn.Open(); //适配到数据源 OleDbDataAdapter adapter = new OleDbDataAdapter(strExcel, strConn); adapter.Fill(ds, strSheetName); conn.Close(); return ds.Tables[strSheetName]; } catch { return null; } } } #rendregion
导入事件实现:
首先是Excel导入检验和获取数据
#region 导入Excel private void ExportExcelExport_EventExport(object sender, EventArgs e) { #region Excel导入检验和获取数据 if (this.textFilePath.Text == "") { MessageBox.Show("请选择要导入的文件!"); return; } if (!File.Exists(textFilePath.Text)) { MessageBox.Show("该路径下文件不存在!"); return; } MessageProcess.InfoShow("开始读取文件数据........."); DataSet dsTmp = CommonMethod.ExcelToDataTable(this.textFilePath.Text); DataTable exceldt = dsTmp.Tables[0]; if (OperateUI.HaveData(exceldt)) { MessageProcess.InfoShow("成功获取数据,开始进行数据处理"); } else { MessageProcess.InfoShow("获取不到数据,可能文件有误"); return; } #endregion } #endregion
导入Excel成功后,可以进行excel中的数据,与数据库的数据进行比较,或者修改数据的数据等一系列操作。
by author:Foreordination
2018-02-01 10:40:52
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
· Spring AI + Ollama 实现 deepseek-r1 的API服务和调用
· 《HelloGitHub》第 106 期
· 数据库服务器 SQL Server 版本升级公告
· 深入理解Mybatis分库分表执行原理
· 使用 Dify + LLM 构建精确任务处理应用