如何在 Windows Mobile 上解码 url 编码字符串?
我从服务器收到了一个网址编码字符串,例如 http%3a%2f%2fstatic.csbew.com%2f%2fcreative%2fpd_test_pptv%2f320x60.png
我想将其解码为正常的网址字符串。我找到了这个方法,但这不适用于紧凑框架。
string url = System.Web.HttpUtility.UrlDecode(strURL, Encoding.GetEncoding("GB2312"));
关于如何解码字符串有什么想法吗?
I have received an url encoding string from the server, e.g http%3a%2f%2fstatic.csbew.com%2f%2fcreative%2fpd_test_pptv%2f320x60.png
I want to decode it to normal url string. I find this method, but this doesn't work on compact framework.
string url = System.Web.HttpUtility.UrlDecode(strURL, Encoding.GetEncoding("GB2312"));
Any idea about how to decode the string?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许这会对您有所帮助:
最初在这里找到:极客工具箱
Maybe this will help you:
Originally found here: geekstoolbox