如何将Excel文件反序列化为二维数组?
我有一个 Excel 工作表,其中所有字段都是字符串。我想将Excel文件中的所有数据反序列化到二维数组(矩阵) 。
我有什么想法可以开始吗?
I have an Excel worksheet where all the fields are strings. I would like to de-serialize all the data from the excel file to a 2D array (matrix).
Any ideas how I can get started?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的 Excel 文件像表格一样构建,您可以使用 ADO.NET 像数据库一样访问您的 Excel 文件并通过 SQL 提取数据。
Excel 97-2003:http://connectionstrings.com/excel#p21
Excel 2007+:http://connectionstrings.com/excel-2007#p20
If your Excel file is built like a table, you can use ADO.NET to access your Excel file like a database and pull your data via SQL.
Excel 97-2003: http://connectionstrings.com/excel#p21
Excel 2007+: http://connectionstrings.com/excel-2007#p20
如果您尝试打开 .xlsx 文件,则应使用 打开Xml SDK。
如果您尝试打开 .xls 文件,我建议您查看 filehelpers.sourceforge.net。
If you're trying to open a .xlsx file, you should use the Open Xml SDK.
If you're trying to open a .xls file, I recommend saving yourself some headaches and checking out filehelpers.sourceforge.net.