网络服务调用

发布于 2024-11-08 19:40:45 字数 184 浏览 0 评论 0原文

在我的应用程序中,我调用 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 技术交流群。

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

发布评论

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

评论(1

夏至、离别 2024-11-15 19:40:45

在将 LakeName 添加到 Web 服务 url 之前,执行此操作

final String encodedLakeName = URLEncoder.encode(lakeName, "UTF-8");

现在使用此编码的 LakeName。

before adding lakeName to the webservice url, do this

final String encodedLakeName = URLEncoder.encode(lakeName, "UTF-8");

Now use this encodedLakeName.

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