C# 中有时模拟HTTP请求时需要用到BASE64编码。
内容来自Novell迷网站
本文引用自http://novell.me
- byte[] bytes = Encoding.Default.GetBytes("待转换的字符串");
- string str = Convert.ToBase64String(bytes);
有编码,自然就有解码。下面是Base64解码的办法:
内容来自http://novell.me
本文转载自http://novell.me
- byte[] outputb = Convert.FromBase64String(str);
- string orgStr = Encoding.Default.GetString(outputb);
本文来自Novell迷网站 http://novell.me
转载请注明出处!本文地址 http://novell.me/master-diary/2015-06-15/csharp-base64-encode-decode.html
(责任编辑:Novell迷)