这是什么类型的编码?

发布于 2024-08-25 21:23:36 字数 95 浏览 6 评论 0原文

您使用哪种编码将 http:// 编码为 http%253A%252F%252F

HttpUtility.UrlEncode 给出 http%3a%2f%2f

What kind of encoding do you use to encode http:// as http%253A%252F%252F

HttpUtility.UrlEncode gives http%3a%2f%2f

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

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

发布评论

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

评论(2

猫九 2024-09-01 21:23:36

您看到的是已通过 UrlEncode 两次的文本。

第二次将 % 符号更改为 %25

无论如何,通过 UrlEncode 传递整个 URL 是不常见的,除非您将其作为另一个 URL 中的参数传递(例如,用于重定向)。

What you're looking at is text that has been passed through UrlEncode twice.

The second time changes the % symbols to %25.

It's unusual to pass an entire URL through UrlEncode anyway, unless you are passing it as a parameter in another URL (for redirection, for instance).

眼藏柔 2024-09-01 21:23:36

看起来 UrlEncode 被调用了两次,将文字 % 编码为 %25 (顺便说一下,这是正确的结果)。

It looks like UrlEncode was called twice, encoding the literal % as %25 (which is the correct result, by the way).

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