我可以在 iOS 中以编程方式创建 .xls 文件吗?
我需要在 iPhone 中以编程方式从数组数据创建一个 .xls 文件。这怎么能做到呢?
I need to create a .xls file from the Array data programmatically in iPhone. How can this be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许你有麻烦了,也许没有。 “旧”xls 格式是一种二进制格式,我不知道有任何免费库能够读取或写入该格式。如果需要这个,那你可能就不走运了。
然而,如果更新的格式可以,您就可以重新开始工作,因为您可以使用 xml(lib2xml 的 objc 包装器很容易获得)。维基百科对您可能想要查看的格式进行了简短概述:维基百科上的 Excel 文件格式
Maybe you're in trouble, maybe not. The "old" xls format is a binary one and I am not aware of any free libraries which are able to read or write to that format. If this one is required, you're propably out of luck.
If however a more recent format will do you're back in business, because you can use xml (objc wrappers for lib2xml are readily available). Wikipedia features a short overwiev of the format which you might want to check out: Excel file formats on Wikipedia