将 NSDictionary 发送到 web 服务

发布于 2024-12-28 02:18:39 字数 132 浏览 1 评论 0原文

在我的 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 技术交流群。

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

发布评论

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

评论(2

芯好空 2025-01-04 02:18:39

查看 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.

雨后彩虹 2025-01-04 02:18:39

如何将 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.

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