20

如何在 C# 中读写 Excel 文件?我已经将 Excel 对象库添加到我的项目中,但是对于访问这些文件需要做什么,我没有得到足够清晰的描述。

请帮助我理解,并在解释时请记住,我对此有点陌生,但我不是一个完整的新手。我学习很多,所以我并不完全无知。

4

7 回答 7

14

我非常喜欢使用EPPlus来执行这些类型的操作。EPPlus 是一个您可以在项目中引用并在服务器上轻松创建/修改电子表格的库。我将它用于任何需要导出功能的项目。

这是一个很好的博客条目,展示了如何使用该库,尽管该库本身应该带有一些解释如何使用它的示例。

在我看来,第三方库比 Microsoft COM 对象更容易使用。我建议试一试。

于 2012-05-02T19:44:59.000 回答
8

我使用 NPOI 来满足我所有的 Excel 需求。

http://npoi.codeplex.com/

附带许多常见 Excel 任务的示例解决方案。

于 2012-05-02T19:29:35.480 回答
2

您可以使用 Excel 自动化(它基本上是一个 COM Base 的东西),例如:

Excel.Application xlApp ;
Excel.Workbook xlWorkBook ;
Excel.Worksheet xlWorkSheet ;


xlApp = new Excel.ApplicationClass();
xlWorkBook = xlApp.Workbooks.Open("1.xls", 0, true, 5, "", "", true, Microsoft.Office.Interop.Excel.XlPlatform.xlWindows, "\t", false, false, 0, true, 1, 0);
xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);

链接到完整教程

于 2012-05-02T19:36:50.703 回答
1
**Reading the Excel File:**

string filePath = @"d:\MyExcel.xlsx";
Excel.Application xlApp = new Excel.Application();  
Excel.Workbook xlWorkBook = xlApp.Workbooks.Open(filePath);  
Excel.Worksheet xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);  

Excel.Range xlRange = xlWorkSheet.UsedRange;  
int totalRows = xlRange.Rows.Count;  
int totalColumns = xlRange.Columns.Count;  

string firstValue, secondValue;   
for (int rowCount = 1; rowCount <= totalRows; rowCount++)  
{  
    firstValue = Convert.ToString((xlRange.Cells[rowCount, 1] as Excel.Range).Text);  
    secondValue = Convert.ToString((xlRange.Cells[rowCount, 2] as Excel.Range).Text);  
    Console.WriteLine(firstValue + "\t" + secondValue);  
}  
xlWorkBook.Close();  
xlApp.Quit(); 


**Writting the Excel File:**

Excel.Application xlApp = new Excel.Application();
object misValue = System.Reflection.Missing.Value;  

Excel.Workbook xlWorkBook = xlApp.Workbooks.Add(misValue);  
Excel.Worksheet xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);  

xlWorkSheet.Cells[1, 1] = "ID";  
xlWorkSheet.Cells[1, 2] = "Name";  
xlWorkSheet.Cells[2, 1] = "100";  
xlWorkSheet.Cells[2, 2] = "John";  
xlWorkSheet.Cells[3, 1] = "101";  
xlWorkSheet.Cells[3, 2] = "Herry";  

xlWorkBook.SaveAs(filePath, Excel.XlFileFormat.xlOpenXMLWorkbook, misValue, misValue, misValue, misValue,  
Excel.XlSaveAsAccessMode.xlExclusive, misValue, misValue, misValue, misValue, misValue);  



xlWorkBook.Close();  
xlApp.Quit();  
于 2019-02-27T10:09:03.347 回答
1

如果您想要易于使用的库,可以使用NUGET 包

  • ExcelDataReader - 读取 Excel 文件(大多数文件格式)
  • SwiftExcel - 编写 Excel 文件 (.xlsx)

请注意,这些是 3rd-Party 软件包 - 您可以免费将它们用于基本功能,但如果您想要更多功能,可能会有“专业”版本。

他们使用二维对象数组(即object[][] cells)来读取/写入数据。

于 2021-01-20T07:39:36.300 回答
0

如果您正在进行简单的操作并且可以将自己绑定到 xlsx,那么您可以考虑自己操作 XML。我已经做到了,发现它比 grokking excel 库更快。

还有更易于使用的 3rd 方库......并且可以在 MS 无法使用的服务器上使用。

于 2012-05-02T19:25:37.427 回答
0

简单而强大的解决方案是ClosedXML库。从“封闭”Excel文件的单元格读取和写入非常简单,主要逻辑如下:

using Excel = ClosedXML.Excel;

namespace Excel_Tests
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

     private void button1_Click(object sender, EventArgs e)
     {
        //create 'workbook' object
        var wb = new Excel.XLWorkbook("E:\\test1.xlsx");
        
        //create 'worksheet' object
        var ws = wb.Worksheets.Worksheet("Sheet1");

        //read cells
        var a = ws.Cell("A1").Value;
        var b = ws.Cell("B1").Value;

        Console.WriteLine(a.ToString());
        Console.WriteLine(b.ToString());

        //write cells
        ws.Cell("F2").Value = 9999999;
        ws.Cell("F2").Value = 2.333;
        ws.Cell("G2").Value = "This is cell G2";
        
        wb.Save();

    }
  }
}
于 2021-10-21T20:42:57.993 回答