码迷,mamicode.com
首页 > 其他好文 > 详细

base64编码和解码

时间:2014-11-10 19:23:29      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   sp   div   on   log   bs   line   

string Str = "abc";

// 编码
string BaseStr = Convert.ToBase64String(Encoding.UTF8.GetBytes(Str));

Console.WriteLine(BaseStr);// YWJj

// 解码
string OldStr = Encoding.GetEncoding("utf-8").GetString(Convert.FromBase64String(BaseStr));

Console.WriteLine(OldStr); // abc

 

base64编码和解码

标签:style   blog   color   sp   div   on   log   bs   line   

原文地址:http://www.cnblogs.com/Cuiy/p/4087708.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!