使用 OpenXML 读取 Excel 文件的性能
截至目前,我正在使用 oledbreader 阅读所有版本的 Excel 文件。我引用了一个用于读取 Excel 2010 文件的 dll。但我无法使用 oledbreader 读取某些 excel 2010 文件。所以我想使用 openxml 来读取所有 excel 文件。这有什么性能问题吗? 哪个更好?
As of now im reading all version of excel files using oledbreader. i referred a dll for reading Excel 2010 files. but i cannot read some excel 2010 files using oledbreader. so i would like to use openxml for reading all excel files. is ter any performance issue in this?
which is better?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我非常幸运地使用以下代码从 Excel 电子表格中检索表名称(工作表名称)和列名称。
上面的代码块从我放置的随机 Excel 电子表格中返回以下数据。
您需要导入以下命名空间才能使其工作:
如果您尝试访问的电子表格有宏,上面的代码可能会失败。
I have had very good luck using the following code to retrieve table names(worksheet names) and column names from Excel spreadsheets.
The above chunk of code returns the following data from a random Excel spreadsheet that I had laying around.
You will need to import the following namespaces for this to work:
If the spreadsheet that you are trying to access has macros, the above code may fail.