xlsx 数据库 ios

发布于 2024-12-25 14:54:11 字数 163 浏览 2 评论 0原文

我正在编写一个 iPhone 应用程序,它从服务器提取 xlsx 文件,对其进行操作(读取和写入)并将其上传到服务器。所以我需要将其转换为plist格式,对plist进行一些操作并将plist转换回xlsx并将其上传到服务器。 在ios上如何进行xlsx->plist和plist->xlsx的转换?

I'm writing an iphone application that pulls xlsx file from the server, manipulates with it (reading and writing to it) and upload it to the server. So I need to convert it to plist format, do some operations with plist and convert plist back to xlsx and upload it to server.
How the convertion xlsx->plist and plist->xlsx could be done on ios?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

所有深爱都是秘密 2025-01-01 14:54:11

以下是完成任务所需的内容:

注意:您必须完成繁重的工作

要解析 xlsx,您需要了解 Open XML 文件格式:链接

要解析plist,您需要了解属性列表文件格式: 链接

解析,我建议使用 NSXMLParser:链接

Here's what you will need to achieve your task:

Note: You must do the heavy lifting

To parse an xlsx, you will need to understand the Open XML file formats: Link

To parse a plist, you will need to understand the Property List file format: Link

To parse, I recommend using the NSXMLParser: Link

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文