从服务器到实用程序应用程序的良好交付格式是什么?
从服务器进入实用程序应用程序时,数据应采用什么格式? JSON、XML 还是其他?
编辑:
我需要告诉客户让他的网络人员为我构建一个网络服务或者让我来做。我需要确保我要求的是正确的事情。
What Format should data be in when going into a utility app from a server? JSON, XML or something else?
Edit:
I need to tell a client to tell his web guy to build me a web service or let me do it. I need to make sure I am asking for the right thing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最好的格式是 Apple 的 Plist 格式。 iPhone OS 可以快速、轻松地解析它。它比 XML 更快、占用的内存更少。
最重要的是,它不需要设备上的额外库或解析代码。
The best format is Apple's Plist format. The iPhone OS can quickly and easily parse this. It's faster and less memory intensive than XML.
Best of all, it requires no additional libraries or parsing code on the device.
Cocoa Touch 中有一些很好的库用于解析和发出 XML 和 JSON。我推荐 KissXML 和 Stig Brautaset 的 JSON 或 TouchJSON。
There are good libraries for parsing and emitting both XML and JSON in Cocoa Touch. I recommend KissXML and either Stig Brautaset's JSON or TouchJSON.