首页 > 编程 > C# > 正文

C# Base 64 编码/解码实现代码

2019-10-29 21:31:48
字体:
来源:转载
供稿:网友
这篇文章主要介绍了C# Base 64 编码/解码实现代码,需要的朋友可以参考下
 

1、base64 to string

   string strPath = "aHR0cDovLzIwMy44MS4yOS40Njo1NTU3L1 9iYWlkdS9yaW5ncy9taWRpLzIwMDA3MzgwLTE2Lm1pZA==";        byte[] bpath = Convert.FromBase64String(strPath);   strPath = System.Text.ASCIIEncoding.Default.GetString(bpath);

2、string to base64

System.Text.Encoding encode = System.Text.Encoding.ASCII ;byte[] bytedata = encode.GetBytes( "test");string strPath = Convert.ToBase64String(bytedata,0,bytedata.Length);


注:相关教程知识阅读请移步到c#教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表