《2022年C#的Excel编程 .pdf》由会员分享,可在线阅读,更多相关《2022年C#的Excel编程 .pdf(8页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。
1、Visual C的 Excel 编程Excel 是微软公司办公自动化套件中的一个软件,他主要是用来处理电子表格。 Excel 以其功能强大,界面友好等受到了许多用户的欢迎。在办公的时候,正是由于Excel 的这么多的优点,许多重要的数据,往往以 Excel 电子表格的形式存储起来。这样就给程序员带来了一个问题,虽然 Excel 功能比较强大,但毕竟不是数据库,在程序中处理数据库中的数据比其处理 Excel 表格中的数据容易许多。那么如何用Visual C 读取 Excel 表格中的数据?在以前用Delphi 编程的时候,对于不同的用户,他们对于打印的需求是不一样的,如果要使得程序中的打印功能适
2、用于每一个用户,可以想象程序设计是十分复杂的。这时想到Excel ,由于 Excel 表格的功能强大,又由于几乎每一台机器都安装了它,如果把程序处理的结果放到Excel 表格中,这样每一个用户就可以根据自己的需要在 Excel 中定制自己的打印。这样不仅使得程序设计简单,而且又满足了诸多用户的要求,更加实用了。那么用Visual C 如何调用 Excel ,如何又把数据存放到Excel 表格中?本文就来探讨一下上述问题的解决办法。一程序设计及运行环境(1). 微软视窗 2000 服务器版(2).Net Framework SDK Beta 2 (3).Microsoft Data Access
3、 Component 2.6以上版本(MDAC2.6)(4).Office 2000套件二Visual C 读取 Excel 表格中的数据:本节将通过一个程序来介绍Visual C 读取 Excel 表格中的数据,并把数据以 DataGrid 的形式显示出来。(1). 如何读取数据:其实读取 Excel 表格中的数据和读取数据库中的数据是非常类似的,因为在某种程度上Excel 表格可以看成是一张一张的数据表。其二者的主要区别在于所使用的数据引擎不一样。在本文的程序中,通过下列代码实现读取 Excel 表格数据,具体如下:/ 创建一个数据链接名师资料总结 - - -精品资料欢迎下载 - - -
4、- - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 8 页 - - - - - - - - - string strCon = Provider = Microsoft.Jet.OLEDB.4.0 ; Data Source = c:sample.xls;Extended Properties=Excel 8.0 ; OleDbConnection myConn = new OleDbConnection ( strCon ) ; string strCom = SELECT * FROM Sheet1$ ; myConn.Op
5、en ( ) ; file:/打开数据链接,得到一个数据集OleDbDataAdapter myCommand = new OleDbDataAdapter ( strCom , myConn ) ; file:/创建一个 DataSet 对象myDataSet = new DataSet ( ) ; file:/得到自己的 DataSet 对象myCommand.Fill ( myDataSet , Sheet1$ ) ; file:/关闭此数据链接myConn.Close ( ) ; 怎么样读取 Excel 表格中的数据其实和读取数据库中的数据没有什么实质上的区别。注释:这里读取的是C盘根
6、目录下的 Sample.xls文件。(2). 用 DataGrid 来显示得到的数据集:在得到 DataSet 对象后,只需要通过下列二行代码,就可以把数据集用 DataGrid 显示出来了:DataGrid1.DataMember= Sheet1$ ; DataGrid1.DataSource = myDataSet ; (3). 用 Visual C 读取 Excel 表格,并用 DataGrid 显示出来的程序代码( Read.cs)和程序运行的界面:掌握了上面二点,水到渠成就可以得到以下代码:using System ; using System.Drawing ; using Sys
7、tem.Collections ; using System.ComponentModel ; using System.Windows.Forms ; using System.Data ; using System.Data.OleDb ; public class Form1 : Form 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 8 页 - - - - - - - - - private Button button1 ; private System.Dat
8、a.DataSet myDataSet ; private DataGrid DataGrid1 ; private System.ComponentModel.Container components = null ; public Form1 ( ) file:/初始化窗体中的各个组件InitializeComponent ( ) ; file:/打开数据链接,得到数据集GetConnect ( ) ; file:/清除程序中使用过的资源protected override void Dispose ( bool disposing ) if ( disposing ) if ( comp
9、onents != null ) components.Dispose ( ) ; base.Dispose ( disposing ) ; private void GetConnect ( ) file:/创建一个数据链接string strCon = Provider = Microsoft.Jet.OLEDB.4.0 ; Data Source = c:sample.xls;Extended Properties=Excel 8.0 ; OleDbConnection myConn = new OleDbConnection ( strCon ) ; string strCom = S
10、ELECT * FROM Sheet1$ ; myConn.Open ( ) ; file:/打开数据链接,得到一个数据集OleDbDataAdapter myCommand = new OleDbDataAdapter ( strCom , myConn ) ; file:/创建一个 DataSet 对象myDataSet = new DataSet ( ) ; file:/得到自己的 DataSet 对象myCommand.Fill ( myDataSet , Sheet1$ ) ; file:/关闭此数据链接myConn.Close ( ) ; private void Initiali
11、zeComponent ( ) 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 8 页 - - - - - - - - - DataGrid1 = new DataGrid ( ) ; button1 = new Button ( ) ; SuspendLayout ( ) ; DataGrid1.Name = DataGrid1; DataGrid1.Size = new System.Drawing.Size ( 400 , 200 ) ; button1.Locat
12、ion = new System.Drawing.Point ( 124 , 240 ) ; button1.Name = button1 ; button1.TabIndex = 1 ; button1.Text = 读取数据 ; button1.Size = new System.Drawing.Size (84 , 24 ) ; button1.Click += new System.EventHandler ( this.button1_Click ) ; this.AutoScaleBaseSize = new System.Drawing.Size ( 6 , 14 ) ; thi
13、s.ClientSize = new System.Drawing.Size ( 400 , 280 ) ; this.Controls.Add ( button1 ) ; this.Controls.Add ( DataGrid1 ) ; this.Name = Form1 ; this.Text = 读取 Excle 表格中的数据, 并用 DataGrid 显示出来! ;this.ResumeLayout ( false ) ; private void button1_Click ( object sender , System.EventArgs e ) DataGrid1.DataM
14、ember= Sheet1$ ; DataGrid1.DataSource = myDataSet ; static void Main ( ) Application.Run ( new Form1 ( ) ) ; 下图是程序编译后,运行结果:http:/ 01:用 Visual C 读取 c:sample.xls的运行界面名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 4 页,共 8 页 - - - - - - - - - (4). 总结:以上只是读取了 Excel 表格中 Sh
15、eet1 中的数据,对于其他 Sheet中的内容,可以参照读取Sheet1 中的程序,只作一点修改就可以了,譬如要读取 Sheet2 中的内容,只需要把 Read.cs 程序中的 Sheet1$改成Sheet2$ 就可以了。三Visual C 调用 Excel 表格,并在 Excel 表格中存储数据:在 Visual C 中调用 Excel 表格,并不像读取 Excel 表格中的数据那么容易了,因为在Visual C 中调用 Excel 表格要使用到 Excel 的 COM 组件。如果你安装Office套件在 C盘,那么在Microsoft OfficeOffice可以找到这个 COM 组件E
16、XCEL9.OLB ,在Visual C 如何使用 Active X组件一文中,这些COM 组件都是非受管代码的,要在 Visual C 中使用这些非受管代码的COM 组件,就必须把他们转换成受管代码的类库。 所以在用 Visual C 调用 Excel 表格之前,必须完成从 COM 组件的非受管代码到受管代码的类库的转换。(1). 非受管代码 COM 组件转换成受管代码的类库:首先把 COM 组件EXCEL9.OLB 拷贝到 C盘的根目录下,然后输入下列命令:tlbimp excel9.olb 这样在 C盘的根目录下面就产生了三个DLL文件: Excel.dll、Office.dll、VBI
17、DE.dll。在产生了上面的三个文件后,这种转换就成功完成了。在下面的程序中,就可以利用这转换好的三个类库编写和Excel 表格相关的各种操作了。(2).Visual C打开 Excel 表格:在Excel.dll中定义了一个命名空间 Excel ,在差命名空间中封装了一个类 Application,这个类和启动 Excel 表格有非常重要的关系,在 Visual C 中,只需要下列三行代码就可以完成打开Excel 表格的工作,具体如下:Excel.Application excel = new Excel.Application ( ) ; excel.Application.Workboo
18、ks.Add ( true ) ; excel.Visible = true ; 但此时的 Excel 表格是一个空的表格,没有任何内容,下面就来介名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 5 页,共 8 页 - - - - - - - - - 绍如何往 Excel 表格中输入数据。(3). 往 Excel 表格中输入数据:在命名空间 Excel 中,还定义了一个类 Cell ,这个类所代表的就是 Excel 表格中的一个下单元。通过给差Cell 赋值,从而实现往 Excel
19、表格中输入相应的数据,下列代码功能是打开Excel 表格,并且往表格输入一些数据。Excel.Application excel = new Excel.Application ( ) ; excel.Application.Workbooks.Add ( true ) ; excel.Cells 1 , 1 = 第一行第一列 ; excel.Cells 1 , 2 = 第一行第二列 ; excel.Cells 2 , 1 = 第二行第一列 ; excel.Cells 2 , 2 = 第二行第二列 ; excel.Cells 3 , 1 = 第三行第一列 ; excel.Cells 3 , 2
20、 = 第三行第二列 ; excel.Visible = true ; (4). Visual C调用 Excel 表格,并在 Excel 表格中存储数据的程序代码( Excel.cs ):了解了上面的这些知识,得到完成上述功能的程序代码就显得比较容易了,具体如下:using System ; using System.Drawing ; using System.Collections ; using System.ComponentModel ; using System.Windows.Forms ; using System.Data ; using System.Data.SqlCli
21、ent ; public class Form1 : Form private Button button1 ; private System.ComponentModel.Container components = null ; public Form1 ( ) file:/初始化窗体中的各个组件InitializeComponent ( ) ; file:/清除程序中使用的各个资源protected override void Dispose ( bool disposing ) 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - -
22、 - 名师精心整理 - - - - - - - 第 6 页,共 8 页 - - - - - - - - - if ( disposing ) if ( components != null ) components.Dispose ( ) ; base.Dispose( disposing ) ; private void InitializeComponent ( ) button1 = new Button ( ) ; SuspendLayout ( ) ; button1.Location = new System.Drawing.Point ( 32 , 72 ) ; button1.
23、Name = button1 ; button1.Size = new System.Drawing.Size ( 100 , 30 ) ; button1.TabIndex = 0 ; button1.Text = 调用 Excel 文件! ; button1.Click += new System.EventHandler ( button1_Click ) ; AutoScaleBaseSize = new System.Drawing.Size ( 5 , 13 ) ; this.ClientSize = new System.Drawing.Size ( 292 , 273 ) ;
24、this.Controls.Add ( button1 ) ; this.Name = Form1 ; this.Text = 如何用 Visual C 调用 Excel 表格! ; this.ResumeLayout ( false ) ; static void Main ( ) Application.Run ( new Form1 ( ) ) ; private void button1_Click ( object sender , System.EventArgs e ) Excel.Application excel = new Excel.Application ( ) ; e
25、xcel.Application.Workbooks.Add ( true ) ; excel.Cells 1 , 1 = 第一行第一列 ; excel.Cells 1 , 2 = 第一行第二列 ; excel.Cells 2 , 1 = 第二行第一列 ; excel.Cells 2 , 2 = 第二行第二列 ; excel.Cells 3 , 1 = 第三行第一列 ; excel.Cells 3 , 2 = 第三行第二列 ; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 7 页,
26、共 8 页 - - - - - - - - - excel.Visible = true ; (5). 编译源程序和程序运行界面:在经过了下列命令编译后:Csc.exe /r:system.dll /r:system.windows.forms.dll /r:system.drawing.dll /r:excel.dll /r:office.dll /r:vbide.dll excel.cs 就可以得到 Excel.exe,运行后界面如下http:/ 02:Visual C 调用 Excel 表格,并存储数据的程序运行界面四Visual C 处理 Office套件中的其他成员程序:本文虽然只介
27、绍了Visual C 在处理 Excel 表格中经常遇到的一些问题的解决方法,但其实对Office套件的其他成员也有很强的借鉴意义,譬如 Visual C 来处理 Word文档,在调用 Word文档的时候,必须先完成 COM 组件从非受管代码到受管代码的转换,Word的 COM 组件位 MSWORD9.OLB,经过转换后也会产生三个DLL文件,但分别是 Word.dll、Office.dll、VBIDE.dll。其实在 Visual C 中调用 Word ,也非常容易。只需要把调用 Excel 表格中的代码换成调用Word的代码就可以了,具体如下:Word.Application word =
28、 new Word.Application ( ) ; word.Application.Visible = true ; 不信你试一下, 看看是否达到你的要求。 对于针对 Word的其他的操作,总体来说和对 Excel 表格的操作相类似。 由于针对 Word只是一个文档,程序对 Word进行的操作是比较少的,所以就不一一介绍了。五总结:本文介绍 Visual C 来处理 Excel 表格的几种最常遇到的情况,虽然针对的只是 Excel 表格,但对其他 Office套件中的成员也具有十分的借鉴意义。名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 8 页,共 8 页 - - - - - - - - -