Excel 文件导入 NSArray
我有一个 Excel 文件,我需要将其数据用作表视图的源。如何将 .xls 转换为 plist 文件,以便将其解析为 NSArray? iWork 套件中的 Numbers 应用程序有此选项吗?
谢谢。
I have an Excel file whose data I need to use as a source for my table view. How can I convert the .xls into a plist file so I can parse it into NSArray? Does the Numbers app in iWork suite have this option?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我过去使用的解决方案是将 .xls 导出为制表符分隔的文件,然后使用 python 脚本将其转换为 plist。这非常简单,但提供示例代码来做到这一点很困难,因为它非常针对特定问题。
The solution I’ve used in the past is to export the .xls as a tab-delimited file and then use e.g. a python script to convert from that to a plist. It’s pretty easy, though providing sample code to do it is difficult because it’s pretty problem-specific.
如果您可以将其导出为 CSV 或 TSV 文件,则可以使用我的 CHCSVParser 来完成所有解析为你工作。
If you can export it as a CSV or TSV file, you can use my CHCSVParser to do all of the parsing work for you.