博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[zz]winform导入excel
阅读量:4927 次
发布时间:2019-06-11

本文共 4001 字,大约阅读时间需要 13 分钟。

winfrom导入excel内容,要求能够excel中多个工作簿的内容。代码如下:

#region 导入excel数据        private void button2_Click(object sender, EventArgs e)        {            OpenFileDialog openFileDialog = new OpenFileDialog();             openFileDialog.Filter = "表格文件 (*.xls)|*.xls";             openFileDialog.RestoreDirectory = true;             openFileDialog.FilterIndex = 1;             if (openFileDialog.ShowDialog() == DialogResult.OK)             {                 Import(openFileDialog.FileName);             }        }        ///         /// 导入excel数据        ///         ///         /// 
public static bool Import(string filePath) { try { //Excel就好比一个数据源一般使用 //这里可以根据判断excel文件是03的还是07的,然后写相应的连接字符串 string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + filePath + ";" + "Extended Properties=Excel 8.0;"; OleDbConnection con = new OleDbConnection(strConn); con.Open(); string[] names = GetExcelSheetNames(con); if (names.Length > 0) { foreach (string name in names) { OleDbCommand cmd = con.CreateCommand(); cmd.CommandText = string.Format(" select * from [{0}]", name);//[sheetName]要如此格式 OleDbDataReader odr = cmd.ExecuteReader(); while (odr.Read()) { if (odr[0].ToString() == "序号")//过滤列头 按你的实际Excel文件 continue; //数据库添加操作 /*进行非法值的判断 * 添加数据到数据表中 * 添加数据时引用事物机制,避免部分数据提交 * Add(odr[1].ToString(), odr[2].ToString(), odr[3].ToString());//数据库添加操作,Add方法自己写的 * */ } odr.Close(); } } return true; } catch (Exception) { return false; } } /// /// 查询表名 /// /// ///
public static string[] GetExcelSheetNames(OleDbConnection con) { try { System.Data.DataTable dt = con.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new[] { null, null, null, "Table" });//检索Excel的架构信息 var sheet = new string[dt.Rows.Count]; for (int i = 0, j = dt.Rows.Count; i < j; i++) { //获取的SheetName是带了$的 sheet[i] = dt.Rows[i]["TABLE_NAME"].ToString(); } return sheet; } catch { return null; } } //下面这种方法获取excel Worksheets Name时,提示无法访问该exceL文件,所以改为上面获取工作簿名的方式 ///// ///// 获得excel sheet所有工作簿名字 ///// ///// /////
//public static string[] GetExcelSheetNames(string filePath) //{ // Microsoft.Office.Interop.Excel.ApplicationClass excelApp = new Microsoft.Office.Interop.Excel.ApplicationClass(); // Microsoft.Office.Interop.Excel.Workbooks wbs = excelApp.Workbooks; // Microsoft.Office.Interop.Excel.Workbook wb = wbs.Open(filePath, Type.Missing, Type.Missing, Type.Missing, Type.Missing, // Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, // Type.Missing, Type.Missing, Type.Missing, Type.Missing); // int count = wb.Worksheets.Count; // string[] names = new string[count]; // for (int i = 1; i <= count; i++) // { // names[i - 1] = ((Microsoft.Office.Interop.Excel.Worksheet)wb.Worksheets[i]).Name; // } // return names; //} #endregion

 

转载于:https://www.cnblogs.com/Raywang80s/p/6906195.html

你可能感兴趣的文章
未能加载文件或程序集“XXX”或它的某一个依赖项。试图加载格式不正确的程序...
查看>>
JS基础(四)运算符
查看>>
swing
查看>>
Continuous integration
查看>>
前端知识点总结
查看>>
github 在ubuntu 使用--常用命令
查看>>
PTA 5-3 解题报告
查看>>
ubuntu遇到包依赖问题出错的解决方法
查看>>
认识DOM 文档对象模型DOM(Document Object Model)定义访问和处理HTML文档的标准方法。元素、属性和文本的树结构(节点树)。...
查看>>
hl7 V2中Message Control ID的含义及应用
查看>>
IOS 4个容易混淆的属性(textAligment contentVerticalAlignment contentHorizontalAlignment contentMode)...
查看>>
iOS 修改textholder的颜色
查看>>
【资料】wod地城掉落
查看>>
C# FTPHelper(搬运)
查看>>
C#HttpHelper类1.3正式版教程与升级报告
查看>>
【转】Android 语言切换过程分析
查看>>
jpa 多对多关系的实现注解形式
查看>>
Android开发——View绘制过程源码解析(一)
查看>>
Quartz和TopShelf Windows服务作业调度
查看>>
让ie9之前的版本支持canvas
查看>>