程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 更多關於編程 >> C#生成Excel文件的方法及代碼

C#生成Excel文件的方法及代碼

編輯:更多關於編程

      一個示例:

      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了。

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved