C# Base64 C# Base 64 编码/解码实现代码
人气:0想了解C# Base 64 编码/解码实现代码的相关内容吗,在本文为您仔细讲解C# Base64的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:C#,Base64,下面大家一起来学习吧。
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);
加载全部内容