网络服务调用
在我的应用程序中,我调用 Web 服务来创建湖泊。该用户在编辑文本中输入湖泊名称,然后我将输入的名称发送到 Web 服务。
现在,当我输入带有空格的字符串时,Web 服务无法成功调用。它显示了一个异常,即非法字符(我在编辑文本中给出的空格)。 我无法找到解决方案,因为我想发送带有空格的名称。
任何帮助都会受到赞赏。 谢谢
in my application I'm calling web service for creating lakes.for that user enters the lake name in edit text and i'm sending that entered name to web service.
now when I'm entering string with space the web service could not call successfully.it shows an exception that illegal char at (the space which I've give in edit text).
i"m not able to find solution for this since i want to send name with space in it.
any help is appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在将 LakeName 添加到 Web 服务 url 之前,执行此操作
现在使用此编码的 LakeName。
before adding lakeName to the webservice url, do this
Now use this encodedLakeName.