我想知道在Excel中读取单元格的最快方法是什么.
我有一个包含50000行的Excel文件,我想知道如何快速阅读它.
我只需要阅读第一列,并使用oledb连接,我需要15秒.
有更快的方法吗?
我有一个包含50000行的Excel文件,我想知道如何快速阅读它.
我只需要阅读第一列,并使用oledb连接,我需要15秒.
有更快的方法吗?
谢谢
解决方法
这是一种依赖于使用Microsoft.Office.Interop.Excel的方法.
请注意:我使用的Excel文件只有一列包含50,000个条目的数据.
2)使用StreamReader快速读取数据.
3)拆分回车换行上的数据并将其添加到字符串列表中.
我使用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