ISO-8859-1 解码 vb.net
我在解码使用“ISO-8859-1”编码的文件时遇到问题。
例如,我无法将“%E7”解码为“ç”。你能帮助我吗?
PS:我正在使用 VB.NET
谢谢, 佩德罗
I'm having problems decoding a file with "ISO-8859-1" encoding.
For example, I can't decode "%E7" to "ç". Can you help me?
P.S.: I'm using VB.NET
Thanks,
Pedro
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
%E7 不是用 8859-1 编码的字符串。看起来像 URL 编码。使用 HttpUtility.UrlDecode(str, Encoding.GetEncoding("iso-8859-1"))
%E7 is not a string that's encoded in 8859-1. It looks like URL encoding. Use HttpUtility.UrlDecode(str, Encoding.GetEncoding("iso-8859-1"))