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.
有字节数组:{ 0, 0, 0, 0, 52, 246, 141, 6 }
它以某种方式表示为字符串:AAAAADT4RyQ=
怎么做?什么是编码器?
对我来说看起来像 base64 编码:
string base64 = Convert.ToBase64String(data);
不过,这并没有给出你所期望的结果——它给出了AAAAADT2jQY=.
AAAAADT2jQY=
您提供的 base64 字符串对应于 { 0, 0, 0, 0, 52, 248, 71, 36 }- 如果没有有关此数据来自何处或如何获得预期值的更多信息,则无法解释差异。
{ 0, 0, 0, 0, 52, 248, 71, 36 }