Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在解码具有“ISO-8859-1”编码的文件时遇到问题。 例如,我无法将“%E7”解码为“ç”。你能帮助我吗?
PS:我正在使用 VB.NET
谢谢,佩德罗
%E7 不是以 8859-1 编码的字符串。它看起来像 URL 编码。使用 HttpUtility.UrlDecode(str, Encoding.GetEncoding("iso-8859-1"))