Android 中的 URLEncodedUtils.format() 问题

发布于 2024-11-05 11:23:05 字数 317 浏览 3 评论 0原文

我发现 URLEncodedUtils.format() 将空格编码为“+”而不是 %20
当我传入由值和空格组成的参数 NameValuePairs 时,它将空格编码为 + 符号。
我传递了一个带有“2011-05-08 21:36:39”值的“time”键和
URLEncodedUtils.format(nameValuePairs, "UTF-8");
返回
&时间=2011-05-08+21%3A36%3A39&
你可以将空格替换为“+”而不是 %20
这是为什么?没想到。认为空间可以专门编码为 %20 但不能编码为 +...

I discovered that URLEncodedUtils.format() encodes spaces as "+" but not %20
When i pass in parameter NameValuePairs consisting of value with space it encodes spaces as + signs.
I passed a "time" key with "2011-05-08 21:36:39" value and
URLEncodedUtils.format(nameValuePairs, "UTF-8");
returns
&time=2011-05-08+21%3A36%3A39&
where as u can c the space replaced with "+" instead of %20
Why is that? Didn't expect it. Thought space could be encoded exclusively as %20 but not the +...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

谁许谁一生繁华 2024-11-12 11:23:05

http://www.w3schools.com/TAGS/ref_urlencode.asp 复制/粘贴

URL 不能包含空格。 URL 编码通常用 + 号 替换空格。

Copy/paste from http://www.w3schools.com/TAGS/ref_urlencode.asp

URLs cannot contain spaces. URL encoding normally replaces a space with a + sign.

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