21

我正在用 C# 创建 EXcel 工作表。

No Of columns:4
Name of columns: SNO, Name, ID, Address

行数没有限制。

         SNO   Name      ID   Address
          1     A         1122  XXXX
          2     B         2211  YYYY


         --- ---        ----    ---

我有字符串作为输入

       string sno, string name, string Id, string address

我实际上是 C# 背景的新手。

任何人都可以分享他们对它的看法,比如需要的dll等。

谢谢

4

1 回答 1

38

如果您包含对Excel Interop的引用,您可以在系统上安装 Office 进行任何操作。

一个小例子:

using Excel = Microsoft.Office.Interop.Excel;

Excel.Application excel = new Excel.Application();
excel.Visible = true;
Excel.Workbook wb = excel.Workbooks.Open(excel_filename);
Excel.Worksheet sh = wb.Sheets.Add();
sh.Name = "TestSheet";
sh.Cells[1, "A"].Value2 = "SNO";
sh.Cells[2, "B"].Value2 = "A";
sh.Cells[2, "C"].Value2 = "1122";
wb.Close(true);
excel.Quit();            
于 2012-04-11T06:27:26.473 回答