在手机之间发送 NSDictionary

发布于 2024-08-17 02:30:40 字数 389 浏览 10 评论 0原文

我有一个应用程序,用户在其中创建存储在 NSMutableDictionary 中的设置。我必须将其发送到服务器,以便收件人稍后可以检索它。

我可以序列化字典,并将其发送到服务器。我的问题是,如果我将其作为 NSData 发送,将其存储在 postgresql 数据库中的 blob 字段中,然后在请求时将其发送回来,是否与使用 [NSDictionary initWithContentsOfURL] 一样简单?服务器端有什么我需要担心的吗? http 标头发送和接收?

如果我将其作为 NSDictionary 发送 ->序列化数据-> xml,以便 iPhone 以外的其他设备可以使用它,是否有一种简单的方法可以从 xml 重新创建 NSDictionary,或者我应该存储 xml 和数据,然后发送请求的数据?

I have an application where a user creates settings that are stored in an NSMutableDictionary. I have to send this to a server, where it can be later retrieved by a recipient.

I can serialize the dictionary, and send it to the server. My question is, if I send it as NSData, store it in a blob field in my postgresql db, and then send it back when requested, is it as simple as using [NSDictionary initWithContentsOfURL]? Is there anything I need to worry about on the server side? http headers sending and receiving?

If I send it as NSDictionary -> serializedData -> xml, so that other devices than iPhones can use it, is there a simple way to recreate the NSDictionary from the xml, or should I store both xml and data, and send the one requested?

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

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

发布评论

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

评论(1

故事和酒 2024-08-24 02:30:40

为了安全起见,我将其序列化为文本 plist。这是一种 xml 格式,因此它应该可以在任何地方使用,但也可以通过一次调用转换回 NSDictionary。

使用 -[NSPropertyListSerialization dataFromPropertyList:format:errorDescription:],并使用 NSPropertyListXMLFormat_v1_0 作为格式。

Just to be safe, I'd serialize it as a text plist. That's an xml format, so it should be usable anywhere, but is also convertible back to an NSDictionary with one call.

Use -[NSPropertyListSerialization dataFromPropertyList:format:errorDescription:], with NSPropertyListXMLFormat_v1_0 as the format.

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