c# – 阅读一个大的Excel文档

前端之家收集整理的这篇文章主要介绍了c# – 阅读一个大的Excel文档前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道在Excel中读取单元格的最快方法是什么.
我有一个包含50000行的Excel文件,我想知道如何快速阅读它.
我只需要阅读第一列,并使用oledb连接,我需要15秒.
有更快的方法吗?

谢谢

解决方法

这是一种依赖于使用Microsoft.Office.Interop.Excel的方法.

请注意:我使用的Excel文件只有一列包含50,000个条目的数据.

1)用Excel打开文件,保存为csv,并关闭Excel.

2)使用StreamReader快速读取数据.

3)拆分回车换行上的数据并将其添加到字符串列表中.

4)删除我创建的csv文件.

我使用System.Diagnostics.StopWatch来执行时间,这个函数需要1.5568秒才能运行.

public static List<string> ExcelReader( string fileLocation )
{                       
    Microsoft.Office.Interop.Excel.Application excel = new Application();
    Microsoft.Office.Interop.Excel.Workbook workBook =
        excel.Workbooks.Open(fileLocation);
    workBook.SaveAs(
        fileLocation + ".csv",Microsoft.Office.Interop.Excel.XlFileFormat.xlCSVWindows
    );
    workBook.Close(true);
    excel.Quit();
    List<string> valueList = null;
    using (StreamReader sr = new StreamReader(fileLocation + ".csv")) {
        string content = sr.ReadToEnd();
        valueList = new List<string>(
            content.Split(
                new string[] {"\r\n"},StringSplitOptions.RemoveEmptyEntries
            )
        );
    }
    new FileInfo(fileLocation + ".csv").Delete();
    return valueList;
}

资源:

http://www.codeproject.com/Articles/5123/Opening-and-Navigating-Excel-with-C

How to split strings on carriage return with C#?

原文链接:https://www.f2er.com/csharp/96786.html

猜你在找的C#相关文章