在手机之间发送 NSDictionary
我有一个应用程序,用户在其中创建存储在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了安全起见,我将其序列化为文本 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.