C#生成Excel文件的方法及代码
2015-02-04来源:易贤网
 

一个示例:

class AppTest

{

private Excel.ApplicationClass _x;

public static void Main0()

{

AppTest a = new AppTest();

a._x = new Excel.ApplicationClass();

a._x.UserControl = false;

for (int i = 0 ;i < 4; i++)

{

a.SaveToXls("D://test//" + i + ".xls"); // 本例是在D盘下建立的test文件夹

}

a._x.Quit();

System.Runtime.InteropServices.Marshal.ReleaseComObject((object) a._x);

System.GC.Collect();

}

private void SaveToXls(string filename)

{

Excel.WorkbookClass wb = (Excel.WorkbookClass) this._x.Workbooks.Add(System.Reflection.Missing.Value);

for(int i = 1;i <= 4; i++)

{

this._x.Cells[i,1]=i.ToString();

this._x.Cells[i,2]="’bbb2";

this._x.Cells[i,3]="’ccc3";

this._x.Cells[i,4]="’aaa4";

}

wb.Saved = true;

this._x.ActiveWorkbook.SaveCopyAs(filename);

}

}

【注:在VS.Net中运行是要添加Excel.dll组件的,Excel组件VS.Net本身是没有的,下面是生成Excel.dll的方法。】

1.要保证机器本身要安装OFFICE.

2.把[C:/Program Files/Microsoft Office/Office:默认安装路径]下的EXCEL9.OLB文件拷贝到[C:/Visual Studio.Net/SDK/v1.1/Bin:VS.Net安装路径]路径下。

3.打开Visual Studio .Net2003命令提示,运行TlbImp Excel9.olb Excel.dll ,就会在[C:/Visual Studio.Net/SDK/v1.1/Bin]下生成Excel.dll组件。

4.在项目中添加Excel.dll引用就OK了。

更多信息请查看IT技术专栏

2026公务员·事业单位培训课程试听报名

  • 报班类型
  • 姓名
  • 手机号
  • 验证码
推荐信息