c# – Convert.FromBase64String(…)抛出FormatException
作者:互联网
以下代码行在IIS Express中正常运行:
Convert.FromBase64String("dmVoaWNsZUlkPTE0MTM=??");
但是当在我的本地IIS 8服务器上运行时,它会抛出以下异常:
System.FormatException: The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters.
为什么会这样?
解决方法:
最后两个字符“??”在base 64字符串中无效.
在这里阅读:https://en.wikipedia.org/wiki/Base64
字符串应以字母数字字符结尾或用一个或多个=字符填充.
编辑 – 解码字符串没有?字符返回“vehicleId = 1413”,所以我想这只是删除它们的情况.
标签:c,net,iis,base64,iis-express 来源: https://codeday.me/bug/20190714/1460419.html