Android 中的 URLEncodedUtils.format() 问题
我发现 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 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
.