将 NSDictionary 发送到 web 服务
在我的 iphone 应用程序中,我试图将 NSDictionary 发送到 java web 服务。在webservice中,当参数保存为hashmap时,它进入了访问的方法;但没有获取到参数(显示为null)。 我哪里出错了?请帮忙。 提前致谢。
In my iphone app,I am trying to send an NSDictionary to a java webservice. In the webservice when the parameter is kept as hashmap,it gets into the the method accessed;But doesnot get the parameters(shown as null).
Where am I going wrong?Pls help.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 SBJSON 库,它将为您提供 NSDictionary 的 JSON 表示形式。 JSON 被广泛用作 HTTP 上的对象表示格式。
Check out the SBJSON library, that will give you a JSON representation of your NSDictionary. JSON is widely used as a object representation format over HTTP.
如何将 NSDictionary 发送到 Web 服务......这是不可能的。
您必须将字典对象转换为 json 格式或某种结构或作为 Web 服务等的参数,然后发布它。
NSDictionary 的对象可能与 java 中“HashMap”的对象不同。
How can you send a NSDictionary to a web service.... its not possible.
You have to convert your dictionary object into json format or some structure or as parameters to web service etc and then post it.
The object of NSDictionary may not be same as that of "HashMap" in java.