博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 循环读取Excel
阅读量:4952 次
发布时间:2019-06-11

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

using System;        using System.Data;        using System.Data.OleDb;        using System.Windows.Forms;        private void button2_Click(object sender, EventArgs e)        {            try            {                string strCon = "Provider=Microsoft.ACE.OLEDB.12.0;" + "Data Source=D:\\723\\文档\\客户.xlsx;Extended Properties=Excel 8.0";                 //string strCon = "Provider = Microsoft.Jet.OLEDB.4.0 ; Data Source = D:\\0723\\文档\\客户.xlsx;Extended Properties=Excel 8.0";                OleDbConnection myConn = new OleDbConnection(strCon);                string strCom = "SELECT * FROM [Sheet1$] ";                myConn.Open();                OleDbDataAdapter myCommand = new OleDbDataAdapter(strCom, myConn);                 DataSet myDataSet = new DataSet();                myCommand.Fill(myDataSet, "[Sheet1$]");                myConn.Close();                               for (int i = 0; i < myDataSet.Tables[0].Rows.Count; i++)                {                    if (!string.IsNullOrEmpty(myDataSet.Tables[0].Rows[i]["CODE"].ToString()))                    {                        string code = "";                        string name = "";                        code = "0,'" + myDataSet.Tables[0].Rows[i]["CODE"] + "',";                        name = "'" + myDataSet.Tables[0].Rows[i]["NAME"] + "')  ";                    }                }                string ss = "";            }            catch (Exception ex)            {             }        }

 

需要读取Excel:

读取出的结果集:

 

  

转载于:https://www.cnblogs.com/xiangshu/articles/3868854.html

你可能感兴趣的文章
機械の総合病院 [MISSION LEVEL: C]
查看>>
实战练习细节(分行/拼接字符串/字符串转int/weak和copy)
查看>>
Strict Standards: Only variables should be passed by reference
查看>>
hiho_offer收割18_题解报告_差第四题
查看>>
AngularJs表单验证
查看>>
静态方法是否属于线程安全
查看>>
fegin 调用源码分析
查看>>
Linux的基本命令
查看>>
02号团队-团队任务3:每日立会(2018-12-05)
查看>>
sql 语法大全
查看>>
SQLite移植手记1
查看>>
Java AmericanFlagSort
查看>>
Mysql远程连接报错
查看>>
C# windows程序应用与JavaScript 程序交互实现例子
查看>>
sqlServer去除字段中的中文
查看>>
HashMap详解
查看>>
Adobe Scout 入门
查看>>
51nod 1247可能的路径
查看>>
js05-DOM对象二
查看>>
mariadb BINLOG_FORMAT = STATEMENT 异常
查看>>