0

运行此代码时出现异常,有什么问题

   var encoder = new System.Text.UTF8Encoding();
   System.Text.Decoder utf8Decode = encoder.GetDecoder();
   byte[] todecodeByte = Convert.FromBase64String(encodedMsg);
   int charCount = utf8Decode.GetCharCount(todecodeByte, 0, todecodeByte.Length);
   var decodedChar = new char[charCount];
   utf8Decode.GetChars(todecodeByte, 0, todecodeByte.Length, decodedChar, 0);
   var message = new String(decodedChar);

此行出现异常

byte[] todecodeByte = Convert.FromBase64String(encodedMsg);
4

1 回答 1

6

Base64 编码每个字符编码 6 位。所以字符串的长度乘以 6,必须能被 8 整除。如果不是,那么它没有足够的位来填充每个字节,你会得到这个异常。

很有可能encodedMsg不是正确编码的base64 字符串。您可以附加一些 = 字符以绕过异常并查看是否弹出任何可识别的内容。= 字符是 base64 的填充字符:

while ((encodedMsg.Length * 6) % 8 != 0) encodedMsg += "=";
// etc...
于 2012-10-18T20:56:06.293 回答